CMD を使用してこのスクリプトを実行するために必要なすべてのモジュールをインストールしました。webmatrix を介して node.js でこのスクリプトを実行すると、次のようになります。
var http = require('http');
var everyauth = require('everyauth');
var app = require('express').createServer();
app.get('/', function(request, response) {
response.send('Hello Express!!');
});
app.listen(2455);
動いていない。エラーは次のとおりです。
iisnode encountered an error when processing the request.
HRESULT: 0x2
HTTP status: 500
HTTP reason: Internal Server Error
You are receiving this HTTP 200 response because system.webServer/iisnode/@devErrorsEnabled configuration setting is 'true'.
In addition to the log of stdout and stderr of the node.exe process, consider using debugging and ETW traces to further diagnose the problem.
The node.exe process has not written any information to the stdout or stderr.
ブログとは異なるスクリプトを試してみましたが、うまくいきません。Webmatrix で Steven Sanderson のテンプレートを試してみましたが、うまくいきました。