I am a beginner to node js
I am using an azure website
app.use('/', express.static(__dirname + '/www'));
server.listen(process.env.PORT || 3000);
This creates a webapplication in my localhost
When i navigate to http://localhost:3000 I can see the html pages with all the styling
Now the problem is, How can I map it to IIS application?
Because when i create an application in IIS in azure machine, i can access it from outsite by navigating to http://machinename.cloudapp.net/AppName which i will not be able to do if its hosted in Localhost