From cd10aa7c8e94c87573fdebfd3e622b7bb5c467d3 Mon Sep 17 00:00:00 2001 From: Tanish Grover Date: Fri, 19 Oct 2018 21:44:45 +0530 Subject: [PATCH] Added a "Why use nodeJS" section (#20459) * Added a "Why use nodeJS" section Added a "Why use nodeJS" section which talks about a few advantages of using nodeJS * fix: formatting --- guide/english/nodejs/index.md | 5 +++++ 1 file changed, 5 insertions(+) diff --git a/guide/english/nodejs/index.md b/guide/english/nodejs/index.md index 3155f58682..bcbb9cc98a 100644 --- a/guide/english/nodejs/index.md +++ b/guide/english/nodejs/index.md @@ -46,6 +46,11 @@ 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. +#### 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). +3. Wide range of hosting options. + #### More information: - [Official NodeJS site](https://nodejs.org) - [Node Version Manager](https://github.com/creationix/nvm/blob/master/README.md)