How to Run HTML files in your Browser from GitHub

less than 1 minute read

If you have a .html file in a Github repository and want to view that page directly you would typically download or clone the repo to your local hard drive and run it from there.

There is an easier way

Simply navigate to the repo in your Github account that contains a HTML file as shown below:

image

Right-click the index.html file and select copy link address.

image

You should have a URL similar to the following structure:

  https://github.com/<your user name>/<your repo>/blob/master/index.html

Enter rawgit.com

As the name implies rawgit shows serves the raw files directly from Github.

To use it simply use the following format:

  https://rawgit.com/<your user name>/<your repo>/master/index.html

If you want to use it in production you can use:

  https://cdn.rawgit.com/<your user name>/<your repo>/master/index.html

That was easy now wasn’t it!

Updated:

Leave a Comment