小编典典

我可以直接从 GitHub 运行 HTML 文件,而不仅仅是查看它们的源代码吗?

all

如果我.html在 GitHub 存储库中有一个文件,例如用于运行一组 JavaScript 测试,有没有什么方法可以直接查看该页面——然后运行测试?

例如,我能否以某种方式实际看到由jQuery
测试套件
生成的测试结果,而无需将存储库下载或克隆到我的本地驱动器并在那里运行它们?

我知道这基本上会将 GitHub 置于静态内容托管业务中,但话又说回来,他们只需要将 mime-type
从更改text/plaintext/html.


阅读 118

收藏
2022-04-15

共1个答案

小编典典

您可能想使用raw.githack.com。它支持 GitHub、Bitbucket、Gitlab
和 GitHub gists。

GitHub

前:

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]

在您的情况下.html扩展


raw.githack.com还支持其他服务:

比特桶

前:

https://bitbucket.org/[user]/[repository]/raw/[branch]/[filename.ext]

后:

发展(节流)

https://bb.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]

制作 (CDN)

https://bbcdn.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]

GitLab

前:

https://gitlab.com/[user]/[repository]/raw/[branch]/[filename.ext]

后:

发展(节流)

https://gl.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]

制作 (CDN)

https://glcdn.githack.com/[user]/[repository]/raw/[branch]/[filename.ext]

GitHub 要点

前:

https://gist.githubusercontent.com/[user]/[gist]/raw/[revision]/[filename.ext]

后:

发展(节流)

https://gist.githack.com/[user]/[gist]/raw/[revision]/[filename.ext]

制作 (CDN)

https://gistcdn.githack.com/[user]/[gist]/raw/[revision]/[filename.ext]


更新:rawgit 已停产

2022-04-15