Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/swap76/learn-javascript
- Owner: Swap76
- License: agpl-3.0
- Created: 2019-06-10T06:56:40.000Z (over 5 years ago)
- Default Branch: master
- Last Pushed: 2022-11-23T11:17:14.000Z (about 2 years ago)
- Last Synced: 2025-01-17T01:07:19.019Z (8 days ago)
- Topics: beginner-friendly, docsify, documentation, javascript
- Language: JavaScript
- Homepage: https://swap76.github.io/Learn-JavaScript/
- Size: 988 KB
- Stars: 114
- Watchers: 7
- Forks: 143
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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.