So I've created my first node.js application. It works great. It's using Express, MongoDB with Mongoose, and Bunyan for logging. Before adding MongoDB/Mongoose it worked fine with PM2 (using "pm2 start app.js -i 4"). Since then I've added the code for MongoDB/Mongoose.
If I start my app with bin/www or "npm start" it works fine. But since adding MongoDB/Mongoose when I start my app with PM2 using the same command it's not working!
When I run "pm2 monit" or "pm2 list" everything looks perfectly fine. All the apps show as online. When I point my browser at localhost:3000 I just get a connection refused.
Is there some PM2 log file I should be looking at? Why isn't it responding to web requests to port 3000 but the monitor and list show everything as working fine?