1.开始

  本文部分内容均转载自文章:

http://www.hanselman.com/blog/InstallingAndRunningNodejsApplicationsWithinIISOnWindowsAreYouMad.aspx

https://github.com/tjanczuk/iisnode

  作者:SCOTT HANSELMAN

  标题:Installing and Running node.js applications within IIS on Windows - Are you mad?

  发布日期:2011.08.28

2.为什么我要在Windows IIS上运行Node.js

  首先,我主要编写的是Asp.Net应用程序,对windows和iis很熟悉,如果在使用Node.js生产的应用如果能部署在IIS上,那么我想很快就能将Node.js开发的应用发布在生产环境中。

  虽然在IIS运行Node.js上并不是最优选择,但是我主要开发企业级应用,单机并发访问量3K、4K足矣并不如大型互联网企业那样会遇到极大的并发、调优压力。

  最后微软有一帮人正在IIS上玩转Node.js,我表示跟着入坑试一试。

  • 进程管理:iisnode模块将会对node.exe进行简单而暴力的全生命周期的进程管理来增强其可靠性。你不必担心何时开启、结束node.exe,或者开着软件监控node.exe的运行状态。
  • 多核服务器的可扩展性:node.exe是一个单进程运行的程序,你需要额外编写基础设施代码来扩展其支持多核服务器,如果使用iisnode,你无须编写代码,将可以配置打开多个进程的node.exe,同时将HTTP请求均衡的负载到多个node.exe上。
  • 自动更新:iisnode将会监视js文件,如果有任何更新将会自动回收并重启node.exe加载新的js代码,你不必担心正在执行的http请求,因为这些请求将会仍然使用旧版本的js直至执行完毕。
  • HTTP访问日志:iisnode将会把HTTP请求中调用console.log输出的内存存储在output中,这些输出内容对于调试远程服务器来说是很重要的资源。
  • 混合开发:iisnode是IIS的一个模块而已,你在一个站点中可以包含node.js、php、asp.net等多个应用程序。
  • 少量的代码修改:为了将node.js程序部署在IIS中你还是需要修改一下node.js代码的,比如process.env.PORT
  • 集成管理经验:iisnode是IIS的一个模块,你可以用到IIS的一些特点如下
    • 端口共享,你可以在80端口下部署多个不同的应用asp.net、node.js、php啊,爱谁谁。
    • HTTPS支持
    • Url rewriting
    • 压缩
    • 缓存
    • 日志

3.如何在IIS上运行Node.js

  • 环境要求
    • Windows Vista, Windows 7, Windows 8, Windows Server 2008, or Windows Server 2012
    • IIS 7.x with IIS Management Tools and ASP.NET
    • WebSocket functionality requires IIS 8.x on Windows 8 or Windows Server 2012
    • URL rewrite module for IIS
      • (Win10:https://www.microsoft.com/en-us/download/details.aspx?id=47337)
    • Latest node.js build for Windows
  • 为IIS7.x/8.x安装iisnode扩展
    • 为 IIS 7.x/8.x 安装 iisnode : x86 或 x64 - 取决于你的操作系统
    • 安装示例, 以管理员权限打开CMD执行 %programfiles%\iisnode\setupsamples.bat
    • 浏览 http://localhost/node

4.学习iisnode

  通过上面安装node示例,查看示例发现iis下新增了一个node目录。

这个node目录运行在DefaultAppPool中(.Net 4.0集成)

  打开Express示例的文件夹,包括以下内容

  在Hello.js中定义了两个不同的接口myapp/foo、myapp/bar

1
2
3
4
5
6
7
8
9
10
11
12
13
var express = require('express');
 
var app = express.createServer();
 
app.get('/node/express/myapp/foo'function (req, res) {
    res.send('Hello from foo! [express sample]');
});
 
app.get('/node/express/myapp/bar'function (req, res) {
    res.send('Hello from bar! [express sample]');
});
 
app.listen(process.env.PORT);

  在Web.Config中指定了,Hello.js作为入口函数,同时将myapp/*请求映射给hello.js执行

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<configuration>
  <system.webServer>
 
    <!-- indicates that the hello.js file is a node.js application
    to be handled by the iisnode module -->
 
    <handlers>
      <add name="iisnode" path="hello.js" verb="*" modules="iisnode" />
    </handlers>
 
    <!-- use URL rewriting to redirect the entire branch of the URL namespace
    to hello.js node.js application; for example, the following URLs will
    all be handled by hello.js:
     
        http://localhost/node/express/myapp/foo
        http://localhost/node/express/myapp/bar
         
    -->
 
    <rewrite>
      <rules>
        <rule name="myapp">
          <match url="myapp/*" />
          <action type="Rewrite" url="hello.js" />
        </rule>
      </rules>
    </rewrite>
     
  </system.webServer>
</configuration>

  打开示例页http://localhost/node/express/readme.htm进一步查看调用情况

  最后打开Chrome浏览器,输入http://localhost/node/express/hello.js/debug,可以远程调试服务,真乃神器也。。

5.总结

  node.js + express即可以快速开发RestAPI和模版站点,又可以在iis中进行部署,远程调试,可以满足项目需要。

  以下内容参考:Debugger Don't work https://github.com/tjanczuk/iisnode/issues/396

  由于IIS7.X不支持WebSockets所以无法使用最新的远程调试器,但是可以通过配置旧的远程调试器(

1
<iisnode debuggerExtensionDll="iisnode-inspector.dll" />

)来支持IIS7.X,仅需要修改一下Web.Config配置,如下

1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
<configuration>
  <system.webServer>
 
    <!-- indicates that the hello.js file is a node.js application
    to be handled by the iisnode module -->
 
    <handlers>
      <add name="iisnode" path="hello.js" verb="*" modules="iisnode" />
    </handlers>
 
    <!-- use URL rewriting to redirect the entire branch of the URL namespace
    to hello.js node.js application; for example, the following URLs will
    all be handled by hello.js:
     
        http://localhost/node/express/myapp/foo
        http://localhost/node/express/myapp/bar
         
    -->
 
    <rewrite>
      <rules>
        <rule name="myapp">
          <match url="myapp/*" />
          <action type="Rewrite" url="hello.js" />
        </rule>
      </rules>
    </rewrite>
    <iisnode debuggerExtensionDll="iisnode-inspector.dll" />
  </system.webServer>
</configuration>

  旧调试器就是丑点。。

http://www.cnblogs.com/mengkzhaoyun/p/5410185.html

crossplatform---Nodejs in Visual Studio Code 08.IIS的更多相关文章

  1. Nodejs in Visual Studio Code 08.IIS

    1.开始 本文部分内容均转载自文章: http://www.hanselman.com/blog/InstallingAndRunningNodejsApplicationsWithinIISOnWi ...

  2. Nodejs in Visual Studio Code 14.IISNode与IIS7.x

    1.开始 部署IISNode环境请参考:Nodejs in Visual Studio Code 08.IIS 部署Nodejs程序请参考:Nodejs in Visual Studio Code 1 ...

  3. Nodejs in Visual Studio Code 10.IISNode

    1.开始 Nodejs in Visual Studio Code 08.IIS : http://www.cnblogs.com/mengkzhaoyun/p/5410185.html 参考此篇内容 ...

  4. Nodejs in Visual Studio Code 11.前端工程优化

    1.开始 随着互联网技术的发展,企业应用里到处都是B/S设计,我有幸经历了很多项目有Asp.Net的,有Html/js的,有Silverlight的,有Flex的.很遗憾这些项目很少关注前端优化的问题 ...

  5. Nodejs in Visual Studio Code 01.简单介绍Nodejs

    1.开始 作者自己:开发人员,Asp.Net , html / js , restful , memcached , oracle ,windows , iis 目标读者:供自己以后回顾 2.我看No ...

  6. Nodejs in Visual Studio Code 04.Swig模版

    1.开始 设置Node_Global:npm config set prefix "C:\Program Files\nodejs" Express组件:npm install e ...

  7. Nodejs in Visual Studio Code 07.学习Oracle

    1.开始 Node.js:https://nodejs.org OracleDB: https://github.com/oracle/node-oracledb/blob/master/INSTAL ...

  8. Nodejs in Visual Studio Code 05.Swig+Bootstrap

    1. 开始 准备好Express+Swig的练习代码:https://github.com/Mengkzhaoyun/nodepractise 准备好AdminLTE后台管理模版:https://ww ...

  9. Nodejs in Visual Studio Code 12.构建单页应用Scrat实践

    1.开始 随着前端工程化深入研究,前端工程师现在碉堡了,甚至搞了个自己的前端网站http://div.io/需要邀请码才能注册,不过里面的技术确实牛.距离顶级的前端架构,目前博主应该是far away ...

随机推荐

  1. win 7安装 linux

    http://blog.csdn.net/wuwenxiang91322/article/details/23528619

  2. A 浪哥的烦恼 完全背包dp

    https://biancheng.love/contest-ng/index.html#/131/problems 首先,去到n点的最小时间是所有数加起来. 然后,如果我1 --- 2,然后再2-- ...

  3. linux编译curl库的动态库so(转)

    转载请注明出处:帘卷西风的专栏(http://blog.csdn.NET/ljxfblog) curl库是一个很强大的http开源库,c++里面能够很方便的和http服务器交互. 最近项目开始内测,开 ...

  4. PHP 数组函数整理

    如果你已经使用了一段时间PHP的话,那么,你应该已经对它的数组比较熟悉了——这种数据结构允许你在单个变量中存储多个值,并且可以把它们作为一个集合进行操作. 经常,开发人员发现在PHP中使用这种数据结构 ...

  5. SDK,monkey 浅谈

    最近在工作之余碰到一些手机测试的新手,现在测试手机的基本都是android的系统. 然后在遇到压力测试的时候就开始遇到问题了. 压力测试用什么工具?怎么使用?工具怎么来? 今天遇到两个人都问我SDK是 ...

  6. 解决winrar压缩软件弹出广告

    最近winrar每次打开压缩包就会弹出一个广告,那是因为winrar是收费软件,注册了就没有广告了.下面我教大家怎么注册来屏蔽广告. 解决方法 1.新建一个txt文件并命名为"rarreg. ...

  7. flash网页播放器

    http://www.52player.com/VideoPlayer/  下载

  8. 分布式日志2 用redis的队列写日志

    using System; using System.Collections.Generic; using System.Linq; using System.Web; using System.We ...

  9. Schema约束

    Schema约束(*xml中如何引入schema约束)(看懂Schema:能根据Schema写出XML文档来:)1.Schema约束文档本身就是一个XML文档.2.Schema对名称空间支持很好3.S ...

  10. 关于最近在做的一个js全屏轮播插件

    最近去面试了,对方要求我在一个星期内用原生的js代码写一个全屏轮播的插件,第一想法就是跟照片轮播很相似,只是照片轮播是有定义一个宽高度大小已经确定了的容器用来存储所有照片,然后将照片全部左浮动,利用m ...