Answers for "starting nodemon server"

124

install nodemon

# Install nodemon
npm install nodemon

# Install nodemon globally on your machine
npm install -g nodemon

# Install nodemon on your project as dev-dependency
npm install nodemon --save-dev
Posted by: Guest on February-05-2021
14

install nodemon

npm install nodemon --save-dev
Posted by: Guest on September-18-2020
4

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
0

starting nodemon server

nodemon ./server.js localhost 8080
Posted by: Guest on May-06-2021

Code answers related to "Shell/Bash"

Browse Popular Code Answers by Language