elzasimoes / express-overview

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Express Overview

Commands 👽

npm i -y npm i --save express

devDependencies 👽

npm i -g nodemon npm i --save-dev nodemon npm start

Issue Nodemon

> [nodemon] restarting due to changes...

PM2 Production 👽

PM2 Doc

npm i --save pm2 npm run production npx pm2 monit npx pm2 status npx pm2 restart npx pm2 show 0 npx pm2 restart 0 npx pm2 kill

"package.json": {
"production": "pm2 start index.js --name appx-backend" }

Node-dev instead Nodemon 👽

Node-dev Doc

npm install -g node-dev npm install node-dev --save npx node-dev index.js

Body-parser 👽

Body-parser Doc

npm i --save body-parser

About

License:MIT License


Languages

Language:JavaScript 100.0%