如果我.html在 GitHub 存储库中有一个文件,例如用于运行一组 JavaScript 测试,有没有什么方法可以直接查看该页面——然后运行测试?
.html
例如,我能否以某种方式实际看到由jQuery 测试套件生成的测试结果,而无需将存储库下载或克隆到我的本地驱动器并在那里运行它们?
我知道这基本上会将 GitHub 置于静态内容托管业务中,但话又说回来,他们只需要将 mime-type 从更改text/plain为text/html.
text/plain
text/html
您可能想使用raw.githack.com。它支持 GitHub、Bitbucket、Gitlab 和 GitHub gists。
https://raw.githubusercontent.com/[user]/[repository]/[branch]/[filename.ext]
在您的情况下.html扩展
发展(节流)
https://raw.githack.com/[user]/[repository]/[branch]/[filename.ext]
制作 (CDN)
https://rawcdn.githack.com/[user]/[repository]/[branch]/[filename.ext]
raw.githack.com还支持其他服务:
https://bitbucket.org/[user]/[repository]/raw/[branch]/[filename.ext]
https://bb.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]
https://bbcdn.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]
https://gitlab.com/[user]/[repository]/raw/[branch]/[filename.ext]
https://gl.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]
https://glcdn.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]
https://gist.githubusercontent.com/[user]/[gist]/raw/[revision]/[filename.ext]
https://gist.githack.com/[user]/[gist]/raw/[revision]/[filename.ext]
https://gistcdn.githack.com/[user]/[gist]/raw/[revision]/[filename.ext]
更新:rawgit 已停产