Tell me more ×
Facebook - Stack Overflow is a question and answer site for facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community. Facebook engineers participate here along with the best Facebook developers in the world. If you have a technical question about Facebook, this is the best place to ask.

I have integrated "emailjs" in my NodeApp and it works fine locally.

When I push my NodeApp to Heroku I get this error and I can't seem to find the mistake. Hope someone can help

This is the error:

2012-11-01T15:24:28+00:00 app[web.1]:           ^
2012-11-01T15:24:28+00:00 app[web.1]: Error: Cannot find module 'bufferjs/concat'
2012-11-01T15:24:28+00:00 app[web.1]:     at Function._resolveFilename (module.js:337:11)
2012-11-01T15:24:28+00:00 app[web.1]:     at Object..js (module.js:464:10)
2012-11-01T15:24:28+00:00 app[web.1]:     at Module.load (module.js:353:31)
2012-11-01T15:24:28+00:00 app[web.1]:     at Function._load (module.js:311:12)
2012-11-01T15:24:28+00:00 app[web.1]:     at Module.require (module.js:359:17)
2012-11-01T15:24:28+00:00 app[web.1]: 
2012-11-01T15:24:28+00:00 app[web.1]:     at Function._load (module.js:279:25)
2012-11-01T15:24:28+00:00 app[web.1]:     at Module.require (module.js:359:17)
2012-11-01T15:24:28+00:00 app[web.1]:     at require (module.js:375:17)
2012-11-01T15:24:28+00:00 app[web.1]:     at Object.<anonymous> (/app/node_modules/emailjs/smtp/message.js:17:4)
2012-11-01T15:24:28+00:00 app[web.1]:     at Module._compile (module.js:446:26)
2012-11-01T15:24:30+00:00 heroku[web.1]: Process exited with status 1
2012-11-01T15:24:30+00:00 heroku[web.1]: State changed from starting to crashed
2012-11-01T15:24:31+00:00 heroku[router]: Error H10 (App crashed) -> GET jeppestrom.dk/ dyno= queue= wait= service= status=503 bytes=
2012-11-01T15:24:31+00:00 heroku[nginx]: 90.185.25.178 - - [01/Nov/2012:15:24:31 +0000] "GET / HTTP/1.1" 503 601 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4" jeppestrom.dk
2012-11-01T15:24:32+00:00 heroku[router]: Error H10 (App crashed) -> GET jeppestrom.dk/favicon.ico dyno= queue= wait= service= status=503 bytes=
2012-11-01T15:24:32+00:00 heroku[nginx]: 90.185.25.178 - - [01/Nov/2012:15:24:32 +0000] "GET /favicon.ico HTTP/1.1" 503 601 "-" "Mozilla/5.0 (Macintosh; Intel Mac OS X 10_8_2) AppleWebKit/537.4 (KHTML, like Gecko) Chrome/22.0.1229.94 Safari/537.4" jeppestrom.dk
2012-11-01T15:24:24+00:00 heroku[web.1]: State changed from crashed to down

My package.json:

{
"name":"app.js",
"version":"0.1.0",
"engines": {
    "node": "0.6.x",
    "npm":  "1.0.x"
},
"dependencies": {
    "express":"2.5.9",
    "jade":"0.26.1",
    "emailjs":"*"
}
}

Thank you very much.

share|improve this question
it's a versioning issue. try npm install emailjs --save and redeploy. I ran into this issue, and I think this is how I solved it, but I don't quite remember. Also, I'm using emailjs v0.3.2 in my app. – Chris Biscardi Nov 2 '12 at 3:16
Hmmm, it's the same problem - I get the same error :/ – Jeppe Strøm Nov 2 '12 at 7:01

Know someone who can answer? Share a link to this question via email, Google+, Twitter, or Facebook.

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Browse other questions tagged or ask your own question.