nodemon open browser code example
Example 1: nodemon node
npm install -g nodemon
Example 2: 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