1.開始html
部署IISNode環境請參考:Nodejs in Visual Studio Code 08.IISnode
部署Nodejs程序請參考:Nodejs in Visual Studio Code 10.IISNodeweb
IISNode版本:v0.2.21windows
2.IIS 7.x瀏覽器
目前版本v0.2.21默認要求Web服務器支持WebSockets,由於IIS7.x不支持(windows 7,2008),沒法使用iisnode中的Node Inspector模塊使用瀏覽器進行遠程調試。服務器
解決的方式很簡單,在web.config中增長一個配置節<iisnode debuggerExtensionDll="iisnode-inspector.dll" />app
<configuration> <system.webServer> <!-- index.js 是myapp的啓動程序 --> <handlers> <add name="iisnode" path="index.js" verb="*" modules="iisnode" /> </handlers> <rewrite> <rules> <rule name="myapp"> <match url="index.js/debug" negate="true" /> <action type="Rewrite" url="index.js" /> </rule> </rules> </rewrite> <!-- iis7下調試 --> <iisnode debuggerExtensionDll="iisnode-inspector.dll" /> </system.webServer> </configuration>