1
0
mirror of https://github.com/kamranahmedse/developer-roadmap.git synced 2025-08-21 16:41:24 +02:00

Add offical links for for nodejs core modules (#7140)

This commit is contained in:
Mark
2024-09-17 16:59:10 +08:00
committed by GitHub
parent 12077bb8f2
commit 915373f16d

View File

@@ -1,3 +1,16 @@
# Nodejs common modules
# Nodejs core modules
These are the common modules that come with `Node.js` out of the box. This module provides tools or APIs for performing out certain standard `Node.js` operations. like interacting with the file system, url parsing, or logging information to the console.
These are the core modules that come with `Node.js` out of the box. This module provides tools or APIs for performing out certain standard `Node.js` operations. like interacting with the file system, url parsing, or logging information to the console.
Learn more from the following resources:
- [@official@Nodejs fs module](https://nodejs.org/api/fs.html)
- [@official@Nodejs url module](https://nodejs.org/api/url.html)
- [@official@Nodejs console module](https://nodejs.org/api/console.html)
- [@official@Nodejs util module](https://nodejs.org/api/util.html)
- [@official@Nodejs events module](https://nodejs.org/api/events.html)
- [@official@Nodejs os module](https://nodejs.org/api/os.html)
- [@official@Nodejs worker threads module](https://nodejs.org/api/worker_threads.html)
- [@official@Nodejs child process module](https://nodejs.org/api/child_process.html)
- [@official@Nodejs process object](https://nodejs.org/api/process.html)
- [@official@Nodejs crypto module](https://nodejs.org/api/crypto.html)