Sample Nodejs App on Azure App services

less than 1 minute read | By Prashanth Madi

  • Create a azure webapp
  • Browse to Kudu In your favorite Microsoft browser, surf to http://.scm.azurewebsites.net. Ex: if your Azure App Service Web App name is “example”, then surf to http://example.scm.azurewebsite.net Once there, you will see the interface below:
  • step1
  • Click ‘Debug Console’ and select ‘CMD’ step2Traverse to wwwroot folder

  • step3 step4

  • Create app.js file and enter below content: > touch app.js

  • Create web.config file and enter below content: > touch web.config

  • Navigate to http://<sitename>.azurewebsites.net and you should see a “hello world” message