The Extra Mile: Publish your project online.

The code logic of the project operates entirely in the browser with Vanilla Javascript, thus making deployment simple by eliminating the need for backend scripting.

Host it on your server service as a static page if you have a subscription.

Alternatively, take advantage of Github's free repository space (and the Github Pages service to create ready-to-use websites with legitimate URLs).

GitHub is a web-based service for version control and collaboration, popular in open-source projects. It allows developers to work together on code and monitor modifications.

If the above sentences confuses you, I've listed your options here:

  1. Fork a Github repository: Users can download and watch locally like we did earlier, avoiding the need to pass around large folders.

  2. Fork a Github repository and host it using Github Pages: Users can access directly through a designated URL like the demos, preventing hassles from downloading and initiating locally;

  3. Fork multiple projects and host all using Github Pages: Since the Pages service only allows each free user to host one repository at a time, a different approach is necessary.

Each option builds upon the previous one.

In simple terms, the more effort the creator puts in, the less work required for the viewer.

To begin with any of these options, you need to first create an account and download an app.

  1. Sign up for Github here;

  2. Download Github Desktop from here;

  3. Run the app, login to your account, and authorize the app by following the instructions.

Now, you can fork your repository.

Last updated