Skip to content

Instantly share code, notes, and snippets.

@rajputankit22
Created August 14, 2022 07:04
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 rajputankit22/cb5ce172b2ffe9cb9d36c9d1c8063ae2 to your computer and use it in GitHub Desktop.
Save rajputankit22/cb5ce172b2ffe9cb9d36c9d1c8063ae2 to your computer and use it in GitHub Desktop.
Sample nodemon.json
{
"restartable": "rs",
"ignore": [
".git",
"node_modules/**/node_modules"
],
"verbose": true,
"execMap": {
"js": "node --harmony"
},
"events": {
"restart": "osascript -e 'display notification \"App restarted due to:\n'$FILENAME'\" with title \"nodemon\"'"
},
"watch": [
"test/fixtures/",
"test/samples/"
],
"env": {
"NODE_ENV": "development"
},
"ext": "js,json"
}
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment