From b8b8ab43ceaeff63e76abc65ee949954ceaeb7e8 Mon Sep 17 00:00:00 2001 From: Archit Sharma <74408634+iArchitSharma@users.noreply.github.com> Date: Fri, 26 Aug 2022 10:53:17 +0000 Subject: [PATCH] Resources added for Nodejs Modules (#1610) * Resources added for Nodejs Modules * Update content/roadmaps/107-nodejs/content/101-nodejs-modules/101-custom-modules.md Co-authored-by: Kamran Ahmed --- .../content/101-nodejs-modules/101-custom-modules.md | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/101-nodejs-modules/101-custom-modules.md b/content/roadmaps/107-nodejs/content/101-nodejs-modules/101-custom-modules.md index bd623107f..763f810fe 100644 --- a/content/roadmaps/107-nodejs/content/101-nodejs-modules/101-custom-modules.md +++ b/content/roadmaps/107-nodejs/content/101-nodejs-modules/101-custom-modules.md @@ -1 +1,9 @@ -# Custom modules \ No newline at end of file +# Custom Modules + +Modules are the collection of JavaScript codes in a separate logical file that can be used in external applications based on their related functionality. There are two ways to create modules in Node.js i.e. either via CommonJS or ESM. + +Free Content +How to Create Modules in Node.js ? +Creating a Module in Node.js +CommonJS vs ESM in Node.js +Modules and Imports in Node.js