I took the facebook example but it does use the old versions of libraries and i had to use newer version of express as i use node v0.6.6. When i try to start the app i get Error: Cannot find module 'restler'. Has anyone got this working with newer versions ?
|
|
|
take a look at the Heroku documentation especially Declare Dependencies With NPM section. After checking your The Programming node.js you should avoid old packages (unless you have a good reason and know how to fork/vendor and fix them) since the core api is changing on every major version (even if there are only small incompatibilities between 0.4.x and 0.6.x). For a recent project involving facebook I used As final advice, look for the package under active development (and look the the sources and tests), fix/fork/avoid the others. |
|||||
|