Skip to content

Latest commit

 

History

History

docs

Learn JavaScript

This repository was made for beginners to start learning Javascript from Scratch

Documentation

This repository uses Docsify for generating documentation website on the fly.

If you want run Docsify you must use latest version of node (now is v13.0.1) read this issue #299

Steps:

  1. Install dependencies
    npm install
    
  2. Then run the following command to serve the documentation.
    npm run serve-docs
    
  3. Now you can preview documentation site in your browser by visiting http://localhost:3000.

ESLint

After making your changes or adding your contributions, lint your javascript files with eslint by running following command. While linting many errors may arise don't try to fix errors from other files except yours as this is tutorial repo some mistakes are intenstion.

$ npm run lint:fix

References

One of the famous reference site for Javascript, it introduces from beginning to the advance concept

W3Schools is an educational website for learning web technologies online. Content includes tutorials and references relating to HTML, CSS, JavaScript

This web site introduces JavaScript with well-sorted topics, so it helps to see overview

They provides a vaiety of media such as video, eBooks, so it would be helpful, it you look for another learning materials