Node.js 无法使节点检查器调试IIS上托管的express/nodejs应用程序

Node.js 无法使节点检查器调试IIS上托管的express/nodejs应用程序,node.js,iis,express,mean.io,iisnode,Node.js,Iis,Express,Mean.io,Iisnode,我已使用IISNode在IIS上托管了我的express/nodejs应用程序 这就是我的web.config的外观: <configuration> <appSettings> <add key="NODE_ENV" value="production" /> </appSettings> <system.webServer> <!-- indicates that the hello.js file is

我已使用IISNode在IIS上托管了我的express/nodejs应用程序

这就是我的
web.config
的外观:

<configuration>
<appSettings>
    <add key="NODE_ENV" value="production" />
</appSettings>
  <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="server/app.js" verb="*" modules="iisnode" />
    </handlers>


     <iisnode loggingEnabled="false" debuggingEnabled="true" debuggerPathSegment="debug" />
    <rewrite>
      <rules>
        <clear />
        <rule name="Debug" patternSyntax="Wildcard" stopProcessing="true">
          <match url="server/app.js/debug*" />
          <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
          <action type="None" />
        </rule>
        <rule name="app" patternSyntax="Wildcard">
          <match url="*" negate="false" />
          <conditions logicalGrouping="MatchAll" trackAllCaptures="false" />
          <action type="Rewrite" url="server/app.js" />
        </rule>
      </rules>
    </rewrite>
        <directoryBrowse enabled="true" />


  </system.webServer>

</configuration>


我想知道屏幕盖上显示的控制台错误是什么。我得到了同样的东西,并致力于调试它。你曾经得到过解决方案吗?不确定它是否值得@SharpCoder,但是如果你想从你的控制台分享错误,我可能有一个解决方案。我可以让我的工作。我想知道你的控制台错误是显示在屏幕帽。我得到了同样的东西,并致力于调试它。你曾经得到过解决方案吗?不确定它是否值得@SharpCoder,但是如果你想从你的控制台分享错误,我可能有一个解决方案。我能让我的工作。