iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.
Questions tagged [iisnode]
400 questions
5
votes
1 answer
Node.exe Stuck at 100% CPU
I have a ExpressJS node.js application running on IISNode on Windows Server 2016 VM with 4 cores and 32GB of memory. I am able to set one process per core, so I have 4 node.exe's running for my app. Node version is v6.10.3.
This is what the…

ChrisK
- 51
- 1
- 2
5
votes
1 answer
How to host a service and static content in iisnode
I have my website working within express. But now I need to host it on IIS. How can I get my routing to work with IISNode?
I was able to move my static content to a /public folder (html, front end js, etc). I didn't want to do this, but got that…

Hoppe
- 6,508
- 17
- 60
- 114
5
votes
2 answers
Keep a node application running on azure app service
I have deployed a node js web application on app service in azure. Issue is that my application occasionally getting killed for unknown reason. I have done exhaustive search through all the log fines using kudu.
If I restart app service, application…

Anup Das Gupta
- 772
- 1
- 7
- 24
5
votes
3 answers
iisnode on windows 7 IIS 7.5 throwing 500.19 error
I have followed the steps mentioned on this github page. But even after doing everything as mentioned I am constantly getting an internal server error while trying to run the sample applications that is installed by the setupsamples.bat file which…

Giridhar Karnik
- 2,213
- 4
- 27
- 47
5
votes
5 answers
IIS returns 500 when Node app returns a 4xx
I have also asked this on the iisnode github project
I am using IISNode via a Windows Azure Website.
If my Node app returns a 2xx status code (200, 201, etc), then all is well and works as expected.
if my Node app returns a 4xx status code, for…

Matt Greer
- 60,826
- 17
- 123
- 123
5
votes
2 answers
iisnode and express
I'm sure this question has been asked a million times but I've not found any solution to the following problem as of yet.
I have a basic application running using nodejs and express. When I run the application in node, it by default sends me to the…

backdesk
- 1,781
- 3
- 22
- 42
4
votes
0 answers
How do I debug an iisnode application?
I have several iisnode applications running on a server. They all have application pools, web.config, and server.js. They all work, except for one.
Our internal DNS is setup to recognize this URL.
I've been over the web.config and server.js files…

Chip Michael
- 75
- 10
4
votes
0 answers
How to deploy Angular 7 Universal application to IIS
I already working on an angular 7 project we just use ng build --prod to create a production build and just copy the content of the dist folder to IIS folder and it works fine. Now I have make this application universal using @ng-toolkit/universal…

Dilshad Ahmad
- 41
- 5
4
votes
1 answer
How to setup iisnode with express?
I recently started working on nodejs. I created a simple nodejs api (with express) which connect to SQL server database and return result. After my development I had challenge how to host this node js api. I decided to host my api on IIS. I got…

Anil
- 1,669
- 5
- 19
- 44
4
votes
4 answers
"Application has thrown an uncaught exception and is terminated: Error: listen EACCES 0.0.0.0:80"
I've searched on other questions in here about this error but I couldn't find a solution.
Yesterday I deployed a Node + Express + Socket.IO website to Azure, and it doesn't work. I get the error
Application has thrown an uncaught exception and is…

Maria Ines Parnisari
- 16,584
- 9
- 85
- 130
4
votes
0 answers
iisnode failing requests after exception under windows?
Recently I've been trying to create a simple file server with nodejs and looks like I've run into some problems that I can't seem to overcome.
In short:
I configured iisnode to have 4 worker processes (there is a setting in web.config for this…

zolipapa
- 646
- 6
- 14
4
votes
1 answer
I can't access my website from outside Windows Server 2012 using IIS and IISNode
I bought a new dedicated server. I have a MEAN Stack application (Node.js, Angular, MongoDB, Express) and wanted to take advantage of using IIS to publish my webapp.
I followed this guide to install iisnode and make a litle node.js server working.
I…

Egidi
- 1,736
- 8
- 43
- 69
4
votes
2 answers
How to restart iisnode?
We are using iisnode with IIS 7.5 on a Windows 2008R2 Server. The node.js app loads some config data when it starts. From time to time the config data changes and the app needs to be restarted.
When restarting the IIS site instance by the Windows…

nitmws
- 41
- 1
- 5
4
votes
1 answer
node.js iisnode https 500 HRESULT 0x6d subStatus 1013
I'm currently working on a realtime chat with socket.io and node.js.
On my development machine everything works fine. I can call my socket.io-server on port 888.
The same port is free and reachable on my production server.
I can't figure out why IIS…

webprogrammer
- 792
- 15
- 26
4
votes
1 answer
IISNode periodically fails with HTTP 500.1001 on Azure
The site periodically becomes unavailable with HTTP 500 error. All I could find from the logs so far is:
ModuleName iisnode
Notification EXECUTE_REQUEST_HANDLER
HttpStatus 500
HttpReason Internal Server Error
HttpSubStatus 1001
ErrorCode The…

Stan Bashtavenko
- 1,025
- 11
- 16