小编典典

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

html

如果我.html在GitHub存储库中有一个文件(例如,用于运行一组JavaScript测试),我是否可以通过任何方式直接查看该页面,从而运行测试?

例如,我是否能以某种方式实际看到[Query测试套件所产生的测试结果,而无需将存储库下载或克隆到本地驱动器并在其中运行呢?

我知道这基本上会将GitHub置于静态内容托管业务中,但是话又说回来,他们只需要将其mime类型从更改为text/plain即可text/html


阅读 926

收藏
2020-05-10

共1个答案

小编典典

您可能要使用raw.githack.com。它支持GitHub,Bitbucket,Gitlab和GitHub要点。

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]

亚搏体育app

之前:

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已停产

2020-05-10