Heroku App keeps crashing according to logs... why? Heroku App keeps crashing according to logs... why? heroku heroku

Heroku App keeps crashing according to logs... why?


run

npm install

locally, and also push the "node_modules" folder to heroku

EDIT: i think you misunderstood some git and herkoku concepts. you need to:

1. clone the repository: 'git clone git://github.com/metadaddy-sfdc/node_chat.git'2. go into the repository: 'cd node_chat'3. now you can run 'npm install' in THAT folder4. after that you can create your heroku app: 'heroku create'5. and deploy that to heroku:   5.1 git add .  5.2 git commit -m "some comment"  5.3 git push heroku master

you MUST a) be in your node_chat folder, b) first npm install, and then push EVERYTHING (git add .) into heroku!