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…
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…
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…
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: {
…