From 00f84e360e07ed49a2e72e95e50191f72d4a528e Mon Sep 17 00:00:00 2001 From: Roberto Jacobo Date: Tue, 4 Oct 2022 18:09:50 -0500 Subject: [PATCH] nodejs modules (#2118) * 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 Co-authored-by: Kamran Ahmed --- .../107-nodejs/content/100-nodejs-introduction/readme.md | 4 ++-- .../107-nodejs/content/101-nodejs-modules/readme.md | 8 +++++++- 2 files changed, 9 insertions(+), 3 deletions(-) diff --git a/content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md b/content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md index 01f7a7350..643e032bf 100644 --- a/content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md +++ b/content/roadmaps/107-nodejs/content/100-nodejs-introduction/readme.md @@ -1,6 +1,6 @@ -# Nodejs introduction +# Node.js Introduction -Node.js® is an open source, cross-platform runtime environment and library that is used for running web applications outside the client’s browser. +Node.js is an open source, cross-platform runtime environment and library that is used for running web applications outside the client’s browser. It is used for server-side programming, and primarily deployed for non-blocking, event-driven servers, such as traditional web sites and back-end API services, but was originally designed with real-time, push-based architectures in mind. Every browser has its own version of a JS engine, and node.js is built on Google Chrome’s V8 JavaScript engine. 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 1370de98b..1238623dd 100644 --- a/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md +++ b/content/roadmaps/107-nodejs/content/101-nodejs-modules/readme.md @@ -1 +1,7 @@ -# Nodejs modules \ No newline at end of file +# Node.js Modules + +CommonJS modules are the original way to package JavaScript code for Node.js. Node.js also supports the ECMAScript modules standard used by browsers and other JavaScript runtimes, they are the official standard format to package JavaScript code for reuse. + +Free Content +Modules: CommonJS modules +href='https://blog.logrocket.com/commonjs-vs-es-modules-node-js/'>CommonJS vs. ES modules in Node.js \ No newline at end of file