Quick start with Express JS
![Image](https://blogger.googleusercontent.com/img/b/R29vZ2xl/AVvXsEhHbS6Pd09iRhyOJ3uknC2fTaWdIa9do_SUn9gesL2ZZ_ZGPhdTUoKTmfvxgBa8TVQd7DCnXcKICovM_eurdszkdllnGVHFQtlPsI5gC-Cu9fQavyH7g1Fiy8clrYdZryrWRg_FYXWtJEQt/s320/Screen+Shot+2018-07-06+at+7.07.53+AM.png)
Your first step to Express JS development Prerequisites software Node JS Guide Install express by npm install express --save Install express-generator by npm install -g express-generator Create project using express <Project Name> To install all dependencies required by Express JS to start npm install To start the server: npm start To test your example: Type the following address in your browser: http://localhost:3000/ You will see the following screen. CONGRATULATIONS, your first Express JS web app has been created successfully