looks like heroku is using npm version 1.0.94
I have a dependency that require node 0.6.x, but npm 1.0.94 is 'based' on node 0.4.7
is there any workaround to solve this issue.
Installing dependencies with npm 1.0.94
npm ERR! Unsupported
npm ERR! Not compatible with your version of node/npm: [email protected]
npm ERR! Required: {"node":"0.6.x"}
npm ERR! Actual: {"npm":"1.0.94","node":"0.4.7"}
The example listed @ http://devcenter.heroku.com/articles/node-js
worked for me when I modified the package.json to the following:
{
"name": "node-example",
"version": "0.0.1",
"dependencies": {
"express": ">=2.2.0"
}
}
If you love us? You can donate to us via Paypal or buy me a coffee so we can maintain and grow! Thank you!
Donate Us With