I'm trying to develop an application which is via Ionic and Node.js. I have deployed the service to Azure but i have problem with nodemon;
package.json
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"start": "nodemon server.js"
}
in this way, it's working properly in localhost.
But it doesn't work on azure.
debug log on azure
Thanks a lot..
According to the error information, it indicates that there is no nodemon installed. Please have a try to install the nodemon with kudu tool (https://yousitename.scm.azurewebsites.net/).
npm install -g nodemon