From c8cf30714f1e920fc35dd674be640013a14b2221 Mon Sep 17 00:00:00 2001 From: Muhammad Anas Sarfraz Date: Wed, 21 Sep 2022 13:28:59 +0400 Subject: [PATCH] comprehensive introduction of node js in (100 what is nodejs) (#1811) * comprehensive introduction of node js in (100 what is nodejs) * add how nodejs works * Update content/roadmaps/107-nodejs/content/100-nodejs-introduction/100-what-is-nodejs.md Co-authored-by: Muhammad Anas Co-authored-by: Kamran Ahmed --- .../100-nodejs-introduction/100-what-is-nodejs.md | 11 ++++++++++- 1 file changed, 10 insertions(+), 1 deletion(-) diff --git a/content/roadmaps/107-nodejs/content/100-nodejs-introduction/100-what-is-nodejs.md b/content/roadmaps/107-nodejs/content/100-nodejs-introduction/100-what-is-nodejs.md index 79dc3253b..ea8f9cc99 100644 --- a/content/roadmaps/107-nodejs/content/100-nodejs-introduction/100-what-is-nodejs.md +++ b/content/roadmaps/107-nodejs/content/100-nodejs-introduction/100-what-is-nodejs.md @@ -1 +1,10 @@ -# What is nodejs \ No newline at end of file +# What is Node.js + +Node.js is an open-source and cross-platform JavaScript runtime environment. It is a popular tool for almost any kind of project! Node.js runs the V8 JavaScript engine, Google Chrome's core, outside the browser. This allows Node.js to be very performant. A Node.js app runs in a single process, without creating a new thread for every request. Node.js provides a set of asynchronous I/O primitives in its standard library that prevent JavaScript code from blocking and generally, libraries in Node.js are written using non-blocking paradigms, making blocking behavior the exception rather than the norm. + +Free Content +Official Website +Node.JS Introduction +Official Website +What is Node.js? +How Node.js Works?