Navigation Menu

Skip to content

Instantly share code, notes, and snippets.

@dance2die
Created November 12, 2017 20:08
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save dance2die/1c5db9617202aa0770967fc42b90eae9 to your computer and use it in GitHub Desktop.
Save dance2die/1c5db9617202aa0770967fc42b90eae9 to your computer and use it in GitHub Desktop.
Installing nodemon globally and locally
npm install -g nodemon && npm install nodemon --only=dev
@mechack200
Copy link

how do i use nodemon, when installed globally within a project

@asketsystem
Copy link

npm run dev, but first configure your package.json to "scripts": {
"dev": "nodemon server/index.js"
},

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment