https://github.com/cba85/node-essentials
👨🎓 Teach node essentials
https://github.com/cba85/node-essentials
nodejs
Last synced: about 1 month ago
JSON representation
👨🎓 Teach node essentials
- Host: GitHub
- URL: https://github.com/cba85/node-essentials
- Owner: cba85
- Created: 2019-10-10T09:17:51.000Z (over 6 years ago)
- Default Branch: master
- Last Pushed: 2023-08-13T21:12:33.000Z (almost 3 years ago)
- Last Synced: 2025-12-03T03:39:57.621Z (7 months ago)
- Topics: nodejs
- Language: JavaScript
- Homepage:
- Size: 5.86 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# teach-node-essentials
Teach node essentials
## Introduction `first-app/`
* Classic javascript (functions)
* Global object `global` vs `window`,`document`
* "Standard": https://github.com/airbnb/javascript
## Modules `modules/`
### Require (CommonJS)
* https://nodejs.org/docs/latest-v15.x/api/modules.html
### Import (ECMAScript)
* https://developer.mozilla.org/fr/docs/Web/JavaScript/Reference/Statements/import
* https://nodejs.org/api/esm.html
* https://nodejs.org/api/esm.html#interoperability-with-commonjs
## Native module OS `os/`
## Native module path `path/`
## Native module fs `fs/` (async/await)
* https://nodejs.org/docs/latest-v15.x/api/fs.html
## Native module events `event/`
* https://nodejs.org/docs/latest-v15.x/api/events.html
## Native module HTTP, HTTP/2, HTTPS `http/`
* https://nodejs.org/docs/latest-v15.x/api/http.html
* https://nodejs.org/docs/latest-v15.x/api/http2.html
* https://nodejs.org/docs/latest-v15.x/api/https.html