Search code examples
javascriptnode.jsazurenodemon

Nodemon not found on Azure


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

enter image description here

Thanks a lot..


Solution

  • 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