Application Error when attempting to deploy Node.js/Express/Socket.io application on Heroku

后端 未结 5 645
甜味超标
甜味超标 2021-02-03 11:19

I am fairly new to all of these technologies (including somewhat JavaScript) so you might have to bear with me here.

I followed the ChatApp tutorial over at Socket.IO do

5条回答
  •  攒了一身酷
    2021-02-03 11:34

    After checking heroku logs I was able to find out that my bcrypt dependency defined properly in package.json. I would recommend you:

    1. Check that your dependencies have the right versions attached to them.
    2. Delete node_modules file
    3. Run npm install
    4. Check if all the dependencies installed properly
    5. If they have installed properly, then git push heroku

提交回复
热议问题