4

我已经安装了所有需要使用 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 的模板,并且确实有效。

4

2 回答 2

2

要将您的应用程序与 iisnode 一起使用,您必须使用 iisnode 提供的端口/套接字(因为在这种情况下,您使用 IIS 作为 Web 服务器,而不是捆绑在节点中的那个)。

用 替换最后一行app.listen(process.env.port || 2455);,这样它既可以与 iisnode 一起工作,又可以在使用 2455 端口运行时使用node.exe app.js

于 2012-06-27T08:01:12.060 回答
1

利用

app.listen(process.env.port || 2455);

而不是`

app.listen(端口号);

因为它是 iisnode web 服务器。

于 2013-04-30T11:05:31.177 回答