Roadmap to becoming a developer in 2022
 
 
 
 
 
Roberto Jacobo d578878b4d
Minor fixe in content file (#2199)
3 years ago
..
100-commonjs-vs-esm.md Add node.js content (#1937) 3 years ago
101-custom-modules.md Resources added for Nodejs Modules (#1610) 3 years ago
102-global-keyword.md Add node.js content (#1937) 3 years ago
readme.md Minor fixe in content file (#2199) 3 years ago

readme.md

Node.js Modules

We split our code into different files to maintain, organize and reuse code whenever possible. A module system allows us to split and include code and import code written by other developers whenever required. In simple terms, a module is nothing but a JavaScript file. Node.js has many built-in modules that are part of the platform and comes with Node.js installation, for example, HTTP, fs, path, and more.

Free Content Modules: CommonJS modules CommonJS vs. ES modules in Node.js More about modules Using Modules Modules in Node.js