Answers for "how to use nodemon in place of npm start"

8

nodemon package.json start

{
  "name": "abc",
  "version": "0.0.1",
  "description": "my server",
  "scripts": {
    "start": "nodemon my_file.js"		// <=
Posted by: Guest on October-09-2020
2

install nodemon npm

npm install -g nodemon
Posted by: Guest on June-05-2020

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language