基于Node.js + Express的应用程序未运行iisnode

时间:2014-06-09 15:12:48

标签: node.js iis express iisnode

我正在使用node.js + express和iisnode进行一些实验。 我有以下非常简单的应用,位于C:\tsapp-deploy\tsappsvr\TestExpress\0.0.0

app.js:

var express = require('express');
var app = express();
app.use(express.static(__dirname + "/public"));

var port = process.env.PORT || 2709;
app.listen(port, function() {
  console.log('Listening on port ' + port);
});

的package.json:

{
  "name": "TestExpress",
  "version": "0.0.0",
  "private": true,
  "dependencies": {
    "express": "3.x"
  }
}

的web.config:

<configuration>
  <system.webServer>
    <handlers>
      <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
    </handlers>
  </system.webServer>
</configuration>

公共/ index.html中:

<!doctype html>
<html>
<head>
  <script language="javascript" type="text/javascript" src="js/jquery.js"></script>
  <script language="javascript" type="text/javascript">
    $(document).ready(function() {
      console.log("READY!");
      $("#hello").html("Hello, World!");
    });
  </script>
</head>
<body>
  <h1 id="hello" style="text-align:center;"></h1>
</body>
</html>

我的配置是:Windows 8.1,IIS 8; iisnode版本0.2.11,节点版本v0.10.28。

从命令行(C:\tsapp-deploy\tsappsvr\TestExpress\0.0.0>node app.js)启动时,应用程序按预期运行:在浏览器中,我转到http://localhost:2709/并看到“Hello,World!”。

我的IIS当前正在运行其他基于node.js的应用程序,而不是使用来自类似位置的快递(即来自C:\tsapp-deploy\tsappsvr\appname\x.y.z\index.js),所以我认为它应该正确配置,但是当我尝试运行此应用程序时浏览器,键入http://localhost/tsappsvr/TestExpress/0.0.0/app.js我在Chrome和Firefox中找到404 Not Found(在IE中)或“无法获取/tsappsvr/TestExpress/0.0.0/app.js”。

我想问题可能出在我的web.config中,但我无法弄清楚如何更改它以使我的应用程序正常运行。我已经尝试了对web.config的一些更改,如其他类似问题的答案所示,但尚未成功。 有什么建议吗?

提前致谢。

2 个答案:

答案 0 :(得分:14)

我想我找到了解决问题的方法:

  • 首先我安装了url-rewrite扩展,再次感谢David。
  • 其次我改变了我的web.config,如下所示:

的web.config:

<configuration>
  <system.webServer>
    <handlers>
      <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
    </handlers>
    <rewrite>
      <rules>
        <rule name="myapp">
          <match url="/*" />
          <action type="Rewrite" url="app.js" />
        </rule>
      </rules>
    </rewrite>
  </system.webServer>
  <appSettings>
    <add key="deployPath" value="/tsappsvr/TestExpress/0.0.0" />
  </appSettings>
</configuration>

请注意deployPath部分中的appSettings键,其值设置为应用的虚拟路径(在IIS中设置)。就我而言,它是/tsappsvr/TestExpress/0.0.0

  • 最后,我的app.js现在如下:

app.js:

// Preamble, so to say
var express = require('express');
var http = require('http');
var app = express();

// Variable deployPath is set in web.config and must match
// the path of app.js in virtual directory.
// If app.js is run from command line:
//   "C:/tssapp-deploy/tsappsvr/TestExpress/0.0.0> node app.js"
// deployPath is set to empty string.
var deployPath = process.env.deployPath || "";

// Static content server
app.use(deployPath + "/pages", express.static(__dirname + '/public'));

// REST API handler (placeholder)
app.all(deployPath + "/api", function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end("<h2>REST API Handler found.</h2>");
});

// Default handler
app.get(deployPath + "/", function(req, res) {
  res.writeHead(200, {'Content-Type': 'text/html'});
  res.end("<h2>Default Handler found.</h2>");
});

// Not Found handler
app.use(function(req, res, next){
  res.writeHead(404, {'Content-Type': 'text/html'});
  res.write("<h2>The requested resource is not available.</h2>");
  res.write("Request received on port " + process.env.PORT + "<br>");
  res.write("Request URL: " + req.url + "<br>");
  res.write("Deploy Path: " + deployPath + "<br>");
  res.end('[iisnode version is ' + process.env.IISNODE_VERSION + ', node version is ' + process.version + ']');
});

// Server creation
var server = http.createServer(app);
var port = process.env.PORT || 2709;
server.listen(port);

变量deployPath用作所有处理程序的前缀(“未找到”处理程序除外)。当从iisnode启动app.js时,deployPath它是process.env的一部分,而如果从命令行启动app.js(例如C:/tsapp-deploy/tsappsvr/TestExpress/0.0.0>node app.js),它是未定义的。这可确保app.js在两种情况下都能正常工作。

现在,在浏览器中输入http://localhost/tsappsvr/TestExpress/0.0.0/我会触发默认处理程序;将/pages附加到以前的URL我可以访问静态内容,而附加/api我会激活REST API处理程序。 http://localhost:2709/作为基本URL也是如此。

答案 1 :(得分:3)

Eric,你安装了url-rewrite extension吗?

以下是我在web.config中的配置:

<configuration>
 <system.webServer>

  <handlers>
   <add name="iisnode" path="app.js" verb="*" modules="iisnode" />
  </handlers>

  <rewrite>
    <rules>
      <rule name="myapp">
        <match url="/*" />
        <action type="Rewrite" url="app.js" />
      </rule>
    </rules>
  </rewrite>
 <system.webServer>    
<configuration>