Answers for "nodemon watch node"

15

nodemon node

npm install -g nodemon
Posted by: Guest on February-17-2020
8

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

Code answers related to "nodemon watch node"

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language