Questions tagged [grunt-nodemon]

Grunt task to run nodemon (no more actively maintened)

Grunt task to run nodemon (no more actively maintened)

https://github.com/ChrisWren/grunt-nodemon

5 questions
57
votes
33 answers

nodemon app crashed - waiting for file changes before starting

EDIT After further testing, I have found that this is happening with both gulp and grunt on this app and on the default install of mean.js. I'm running this locally on a Mac. When I running either app using "node server.js" they don't crash. I'm…
MTD
  • 609
  • 1
  • 5
  • 6
4
votes
3 answers

How to define custom nodemon configuration in nodemonConfig in package.json?

I tried implementing custom nodemon configuration in package.json as shown below: "nodemonConfig": { "watch": ["server", "bin/www"], "ext": "ts", "ignore": ["*.test.ts"], "delay": "3000", "execMap": { "ts": "ts-node" } …
ankurnarkhede
  • 378
  • 1
  • 4
  • 9
1
vote
2 answers

How to prevent grunt-nodemon from restarting all apps

I'm running node on Windows 10. I have three node apps and I want to be able to start them all up with one handy grunt command. Furthermore, I want node to automatically restart if I modify any of the apps. I'm using a combination of grunt-nodemon…
d512
  • 32,267
  • 28
  • 81
  • 107
1
vote
0 answers

Running grunt-nodemon throws module not found error.

I have gruntfile in node app (node version -4.2.2, npm version - 2.14.7) as below: // watch node server for changes nodemon: { default: { script: 'server.js' } }, Running…
n92
  • 7,424
  • 27
  • 93
  • 129
0
votes
0 answers

Grunt Nodemon failing while initializing

I am trying to start grunt when ever there is a js change and have following code: module.exports = function (grunt) { grunt.initConfig({ nodemon: { all: { script: "server.js", options: { …
Simsons
  • 12,295
  • 42
  • 153
  • 269