Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/tidbitsjs/ztm-node
https://github.com/tidbitsjs/ztm-node
Last synced: 2 days ago
JSON representation
- Host: GitHub
- URL: https://github.com/tidbitsjs/ztm-node
- Owner: TidbitsJS
- Created: 2021-06-02T14:45:04.000Z (over 3 years ago)
- Default Branch: master
- Last Pushed: 2022-07-26T17:57:14.000Z (over 2 years ago)
- Last Synced: 2024-10-11T10:49:30.170Z (26 days ago)
- Language: JavaScript
- Size: 6.42 MB
- Stars: 5
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Complete NodeJS Developer in 2022
### Node.js - How We Get Here
* How do you run JavaScript?
* JavaScript Engines used by browsers:
- Google Chrome's **V8** engine
- Firefox's **SpiderMonkey** engine
- Safari's **JSC(JavaScriptCore)** engine
* Key moments:
- 1995: Netscape Navigator launched JavaScript language in the browser.
- 1996: Netscape Navigator's v3.0 launched a server side JavaScript called LiveWire.
- 2008: Google launched a poweful engine called V8 to run JavaScript.
- 2009: Ryan Dahl launched a JavaScript runtime called Node.js to run JavaScript outside of the browser.### Node.js Runtime
* Node.js combines V8 engine and libuv library to run JavaScript.
* libuv is a C library that provides ability to perfrom asynchronous tasks with event loop.
* Is web browser a JavaScript runtime? YES**Node System**: A Node.js application essentially interacts with the v8 engine. If a piece of code is outside of v8 engine, such as OS operations, code is passed through node.js bindings that allow to use libraries like libuv to perform that specific action.
* Node.js runtime comes in two versions:
- LTS(Long Term Support) - Stable and odd version of Node.js
- Current - Latest and even version of Node.js### Process argv
Process is an object that Provides information about, and control over, the current Node.js process.
Process argv property returns an array containing the command-line arguments passed when the Node.js process was launched.
Process argv example: [Check Code](./Foundations/hello.js)
### Node VS Browser
| Node.js | Browser |
| ------ | ------ |
| global | window |
| process | document |
| module | history |
| __filename | location |
| require() | navigator |### Node Internals
The V8 engine is only responsible to execute the javascript code. Rest of the part that need to be executed such as OS operations, network operations, etc. is handled by Node.js.
These operations are called as Node.js APIs which are later connected to node.js bindings.
Node bindings, written in higher level language, calls the internal code responsible to handle these operations which is written in low level language such as C/C++. It's connection between JavaScript world and C++ world.
libuv is the library that handles the I/O operations for Node.js.
![node internals](./screenshots/node_internals.png)
**Is JavaScript a Synchronous or Asynchronous language?**
JavaScript is a synchronous language. Then how does it handle async code in Node.js?
When JavaScript is run in a certain environment like Browser or Node, it allows us to write async functionality.
It’s the libuv that handles the async tasks in Node:
- File system
- Network**JavaScript is a single-threaded programming language. Thus the node.**
Node has only one main thread which:
- runs the V8 engine including Node APIs
- has a super important part of libuv, called, event loopIn node, anytime we call an asynchronous function from JavaScript, such as setTimeout or data fetch, it gets put on the event loop.
The event loop is what allows Node.js to perform non-blocking I/O operations — despite the fact that JavaScript is single-threaded — by offloading operations to the system kernel whenever possible.
How event loop executes the code?
1. Most of the tasks are done directly in the operating system
2. Using thread poolIn libuv, there is a thread pool set up ahead of time. libuv is a C language having many threads
So in Node,
1) we have a main thread
2) Thread of pool by libuv
**Myth: All asynchronous operations are handled in the thread pool**
Node actually tries to avoid using thread pool as it's complex. Whenever possible libuv uses the operating system directly, the kernel.
Kernel talks to computer hardware with threads of his own.
Event loop is responsible for handling all these callback functions in Node. Event loop phases:
- Timers
- I/O callbacks
- setImmediate
- Close Callbacks![Event Loop Phases](./screenshots/event_loop.png)
### Node Event Emitter
* built in event module to handle events
* all objects that emit events are instances of EventEmitter classEvent Emitter example: [Check Code](./Internals/event.js)
### Modules
* You can’t use HTTPS URLs with the HTTP module. If used, it will throw an Error of Invalid Protocol.
HTTP example: [Check Code](./Modules/http-example.js)* Why use modules?
1. Reuse existing code
2. Organize your code
3. Expose only what will be usedModules example: [Check Code](./Modules/Create-Module/)
* module is a global built-in that contains data related to the current file, such as filename, path, and exports object.
* require by default look for these extensions chronologically -
1. .js
2. .json
3. .node```javascript
module.exports.doYouLikeJS = true
// OR
exports.doYouLikeJS = true
// OR
const doYouLikeJS = true
module.exports = {doYouLikeJS}
// OR
module.exports.doYouLikeJS = doYouLikeJS
```**ECMAscript Modules**
To load an ES module:
* set `"type": "module"` in the package.json
* use the .mjs extension and run `node fileName.mjs` where **m** stands for moduleECMAscript Modules example: [Check Code](./Modules/ECMAScriptModule/)
**Module Cache Mechanism**
* If we load a module then it’s not loaded again even if you require the same module more than once. Node cache the required module.
* When a module is cached it lived under the require.cache object.
Module Cache example: [Check Code](./Modules/module-caching.js)
**Should we use index.js?**
* index.js is a special case in node.js.
* It allows you to treat a folder as a module. When you use a path to a folder with require function, it results in the index.js file inside that folder.
* It needlessly complicated the module loading system - Ryan Dahl
* It’s controversial. Developers have their own way of choosing `index.js` or not.