From 0de4ebb01040bd95075e31a0e4cc4d5936f09d63 Mon Sep 17 00:00:00 2001 From: Mukesh Dasari Date: Mon, 11 Feb 2019 21:43:35 +0530 Subject: [PATCH] Added NPM description (#28473) * Added NPM description * fix: removed unnecessary sentence --- guide/english/nodejs/index.md | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/guide/english/nodejs/index.md b/guide/english/nodejs/index.md index c286b4e3b0c..77098f008ed 100644 --- a/guide/english/nodejs/index.md +++ b/guide/english/nodejs/index.md @@ -50,6 +50,10 @@ Node.js takes less time because of its non-blocking I/O model. The first call to When the timer completes it's execution taking 5 seconds, it calls the function and prints ```done``` on the console. Since, both the timers are started together, they complete together and therefore take same amount of time. +#### NPM +NPM is the default package manager for JavaScript runtime environment NodeJS. +For more visit : [NPM official site](https://www.npmjs.com/) + #### Why use NodeJS: 1. Great for beginners. JavaScript is a beginner friendly language. 2. Great supportive community and massive amount of modules (Express, Grunt, etc).