Beyond Hello World with NodeJS | 1.1 | The Simplified way
In my Last article , we made a simple server using that responds with "Hello World". you can follow the previous article Understanding NodeJS and Hands On | The Simplified Way In this article we are going to create something beyond just "Hello World", we are going to talk about installing 3rd party modules using npm and using it in our node application to make things easier. Firstly we will will start with most popular server side framework " ExpressJS ", It is a JS framework which makes the things easier for us, let watch it in action. Till now our project directory contains only 2 files that is "index.js" and "package.json" and we have not used any 3rd party module in our application. Now we will install "Express JS" as third party dependency module from NPM, and will make a server which return different kind of response on different requests. Step 1: Open your terminal in your project directory...