Reputation: 15064
I have developed a sample Node JS application , and have deployed in Heroku. When I check the application in browser , due to some reason , which I am not aware of , it displays a JavaScript error in browser.
Now I would like to confirm whether all the node modules have been installed or not , any idea how to check that ?
Note : Application runs without issues locally in my system
Upvotes: 1
Views: 604
Reputation: 5261
Spin up a one-off dyno, in which you can list your node modules, as follows:
heroku run bash
npm list
Upvotes: 3