Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/swap76/learn-javascript

This repository is for beginners to start learning JavaScript from Scratch
https://github.com/swap76/learn-javascript

beginner-friendly docsify documentation javascript

Last synced: about 22 hours ago
JSON representation

This repository is for beginners to start learning JavaScript from Scratch

Awesome Lists containing this project

README

        

# Learn JavaScript

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

## Documentation

This repository uses [Docsify](https://docsify.js.org) for generating documentation website on the fly.

If you want to run Docsify, you must use the latest version of node (now is v13.0.1).
read this issue [#299](https://github.com/Swap76/Learn-JavaScript/issues/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 the following command.
While linting, many errors may arise. Don't try to fix errors from other files except yours as this is a tutorial repo some mistakes are intentional.

```sh
$ npm run lint:fix
```

## References

### [MDN](https://developer.mozilla.org/en-US/docs/Web/JavaScript)
One of the famous reference site for Javascript, it introduces various concepts from beginning to advanced.

### [w3schools.com](https://www.w3schools.com/js/)
W3Schools is an educational website for learning web technologies online. Content includes tutorials and references relating to HTML, CSS, JavaScript and many more.

### [The Modern JavaScript Tutoial](https://javascript.info/)
This web site introduces JavaScript with well-sorted topics, giving a basic overview of JavaScript.

### [TutorialPoint](https://www.tutorialspoint.com/index.htm)
They provide a variety of media content such as videos, eBooks, and other learning materials making JavaScript much simpler.