From d578878b4d89b88b074576a03bf1258c5fcf01e8 Mon Sep 17 00:00:00 2001 From: Roberto Jacobo Date: Fri, 7 Oct 2022 07:04:13 -0500 Subject: [PATCH] Minor fixe in content file (#2199) * Node.js Introduction updated ...developer-roadmap/content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md file updated with the appropriate guidelines. * 101-nodejs-modules.md file updated * Update content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md * Update content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md * Update content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md * Node modules updated (fixed) * Node.js Modules main text Co-authored-by: Kamran Ahmed --- .../107-nodejs/content/101-nodejs-modules/readme.md | 7 ++++--- 1 file changed, 4 insertions(+), 3 deletions(-) diff --git a/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md b/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md index a2602f1bb..e063a298e 100644 --- a/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md +++ b/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md @@ -1,9 +1,10 @@ -# Node.js modules +# 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 -Official Documentation +Modules: CommonJS modules +CommonJS vs. ES modules in Node.js More about modules Using Modules -Modules in Node.js \ No newline at end of file +Modules in Node.js