Trying to push my Node.js app to Heroku, Error: ENOENT with jade npm

planetcreative

New Member
As the title says, I'm trying to push my app to Heroku, but I keep getting these errors:\[code\]291 error Error: ENOENT, chmod '/tmp/build_htb3av307zzc/node_modules/jade/bin/jade'292 error If you need help, you may report this log at:292 error <http://github.com/isaacs/npm/issues>292 error or email it to:292 error <[email protected]>293 error System Linux 2.6.32-350-ec2294 error command "/tmp/node-node-lBSf/bin/node" "/tmp/node-npm-vbZC/cli.js" "rebuild"295 error cwd /tmp/build_htb3av307zzc296 error node -v v0.10.2297 error npm -v 1.2.15298 error path /tmp/build_htb3av307zzc/node_modules/jade/bin/jade299 error code ENOENT300 error errno 34301 verbose exit [ 34, true ]\[/code\]My package.json is as follows:\[code\]{ "name": "application-name", "version": "0.0.1", "private": true, "scripts": { "start": "node app.js" }, "dependencies": { "express": "3.1.1", "jade": "*", "mongojs": "*", "less": "*", "crypto": "*" }, "engines": { "node": "0.10.2", "npm": "1.2.15" }}\[/code\]I've been googling and reading about the Error: ENOENT with jade and all the answers seem to just say, remove /bin /tmp from .gitignore, this sadly did not fix the issue for me, I'm turning to you guys for help, anything would be appreciated I'm about to throw my monitor :) Thanks!
 
Top