Answers for "nodemon specify command"

10

nodemon script

# Install nodemon
npm i nodemon
# Write a script like ...
"scripts": {
        "start":"nodemon index.js"
    }
# Start in your terminal with something like ...
nodemon ./server.js localhost 8000
or
npm run server
Posted by: Guest on April-23-2021
0

nodemon a npm run command

nodemon --exec npm run dev:test
Posted by: Guest on April-17-2020

Browse Popular Code Answers by Language