My App Service Linux instance crashes if my node app is using the start script: \"start\": \"pm2 start server.js\":
\"start\": \"pm2 start server.js\"
2019-04-15 11:36:34.432 ERRO
I was having the same issue. When I changed the code in my server.js file to the below it succesfully ran:
const port = process.env.port || 8080;
After redeploying to Azure it is now working.