FACN1 / week7-SPN

Saucy Psychic Ninjas Dinner Blog
https://guesthouse-dinners.herokuapp.com/
1 stars 0 forks source link

Package json dev script #42

Open philawsophizing opened 7 years ago

philawsophizing commented 7 years ago
   "dev": "./node_modules/.bin/nodemon src/server.js",

can just be:

    "dev": "nodemon src/server.js"

then in your terminal: npm run dev

not that either way is better.

mattlub commented 7 years ago

would this work if nodemon is not installed globally?

philawsophizing commented 7 years ago

yep, tried it as a dev dep, don't have it globally.