I’m trying to deploy a node.js application to heroku, and get an error:
Installing dependencies with npm
npm ERR! Error: No compatible version found: express@'>=3.0.0'
When deploying from Cloud9. Does heroku support express 3.0?
Sign Up to our social questions and Answers Engine to ask questions, answer people’s questions, and connect with other people.
Login to our social questions & Answers Engine to ask questions answer people’s questions & connect with other people.
Lost your password? Please enter your email address. You will receive a link and will create a new password via email.
Please briefly explain why you feel this question should be reported.
Please briefly explain why you feel this answer should be reported.
Please briefly explain why you feel this user should be reported.
You probably haven’t specified what version of Nodejs your app supports.
https://devcenter.heroku.com/articles/nodejs-versions
By default, it uses Node 0.4.7, which will not work with express 3.x. I think you will need at least Node >= 0.5.0.