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

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

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

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

回答:

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

回答:

之前:

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

在你的情况下.html扩展

后:

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

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]

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]


以上是 我可以直接从GitHub运行HTML文件,而不仅仅是查看其源代码吗? 的全部内容, 来源链接: utcz.com/qa/430114.html

回到顶部