-
Notifications
You must be signed in to change notification settings - Fork 0
Node JS
kitiya edited this page Mar 11, 2020
·
7 revisions
npm init -y
Nodemon is a utility that will monitor for any changes in your source and automatically restart your server. Perfect for development.
npm install nodemon --save
Express is a minimal and flexible Node.js web application framework that provides a robust set of features for web and mobile applications.
npm install express
body-parser is Node.js body parsing middleware.
Parse incoming request bodies in a middleware before your handlers, available under the req.body property.
npm install body-parser
npm i bcrypt-nodejs