Posts

Showing posts with the label ExpressJs

Quick start with Express JS

Image
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