(node) warning: recursive process.nextTick encountered - RangeError: maximum call stack size exceeded

I'm new to all packages (Yo, Bower, Grunt, etc.) so I decided to follow Yeoman's instructions step by step http://yeoman.io/codelab/setup.html , however after installing everything and starting the grunt service I I get the following:

(node) warning: recursive process.nextTick encountered. This will break in the next version of node. Please use setImmediate for recursive deferral.

(node) warning: recursive process.nextTick encountered. This will break in the next version of node. Please use setImmediate for recursive deferral.

(node) warning: recursive process.nextTick encountered. This will break in the next version of node. Please use setImmediate for recursive deferral.

node.js: 0

RangeError: Maximum call stack size exceeded

I know that on the Grunt official site they said it might be related to an alias task with the same name as one of your regular tasks, bu I have source files generated by grunt, yo, node and angular generator, it looks like , not someone who can help?

Platform:

yo - 1.4.1

bower - 1.3.12

grunt-cli - v0.1.13

grunt - v0.4.5

node - v0.10.35

npm - 2.1.17

+3


source to share


3 answers


I had the same problem and this solution worked for me on Ubuntu 12.04: grunt throw "Recursive process .nextTick detected"



+2


source


Sometimes when starting the grunt service there is a max call issue, so it is recommended that you have so many windows and programs installed on your computer (like skype, dropbox, sublime, etc.)



0


source


Try npm cache clean && & npm install gruntjs / grunt-contrib-imagemin, you can see the current npm versoin version and the required versoin, then update your npm versoin using this npm -g npm @latest installation

0


source







All Articles