iisnode won't run Express
问题 I'm trying to run express using iisnode. I followed the examples provided but when trying to use the latest Express version with a basic example, there's no way to make it work. I'm getting the error Cannot GET /node/parislight/hello.js and other times, just a The webpage cannot be found . My created a hello.js file (main express file) taken from the express docs. var express = require('express') var app = express() app.get('/', function (req, res) { res.send('Hello World!') }) var server =