+ 13
Is it possible to output codes on GitHub?
Is there any means to run a code on github and get the output.
2 Antworten
+ 8
Code in Github is for storage, so no Github doesn't support a compiler.
+ 6
You can run html page from github.
Git clone your github page by using this command
git clone https://github.com/username/username.github.io
Go to username.github.io folder to edit index.html file and other csss/js files.
Git add/commit and push to github.
You would get your page run from url https://username.github.io
* note that username is your GitHub user name