Answers for "how to add nodemon start script"

6

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

npm install nodemon

npm install --save-dev nodemon
Posted by: Guest on April-09-2021

Browse Popular Code Answers by Language