iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.
Questions tagged [iisnode]
400 questions
4
votes
2 answers
Missing Documentation for web.config for a Node.js application on Azure Website
I'm running a Node.js server as API for my mobile app on a Windows Azure Website. And I'm having some trouble with it due to the needed web.config - but I couldn't find any really helpful documentation about it. Everything I can find is googling for…

akohout
- 1,802
- 3
- 23
- 42
4
votes
2 answers
how to get the port # when using iisnode?
I have a simple server that runs fine (below), the problem is that the value of process.env.PORT is not a number as I expected, rather it is a string value like "\\.\pipe\d226d7b0-64a0-4d04-96d4-a75e1278b7a9". How do I get the actual numeric value…

Frank Schwieterman
- 24,142
- 15
- 92
- 130
4
votes
3 answers
IISNode and Express 3 yields http 403.13 error
I am setting up IISNode on IIS 7 locally on my Win7 box. I followed the instructions on the site and the samples are working fine.
I created a new website and AppPool in IIS Manager to run a brand new shell of an Express site. I've added the…

JamesEggers
- 12,885
- 14
- 59
- 86
3
votes
0 answers
Stripe create-checkout-session -method returns http 400 (bad request) in production not in localhost
I have been struggling with Stripe http 400 error in production server. The node.js (Express) code below works perfectly with localhost: it connects stripe-service and gets the payment session-id. But the same code in production server (iisnode.exe)…

M.Y.
- 549
- 1
- 3
- 23
3
votes
0 answers
Universal doesn't render HTTP calls
I am moving an app to Universal in order to get good SEO on the index.html page. The main things I need there are title and some metas (keywords, description, og-tags etc).
The thing is that if I am mocking an http call that returns the meta tags…

Udi Mazor
- 1,646
- 2
- 15
- 30
3
votes
2 answers
Query/headers too large on Azure if auth enabled
I have a node/express app that works great locally. I have uploaded it to Azure Web App and it works fine as long as I do not enable authentication. When I enable AAD auth, the app fails with STATUS 500.1011 "Bad Request". I have quite a few query…

Herjar
- 59
- 6
3
votes
1 answer
Host NextJs to IIS
Good Day!
My colleague has a website node.js (next.js), his website works fine when we build and start thru console (npm run build and npm start).
We have hosted it in a Azure VM (Windows Server 2016 IIS, iisnode and urlrewrite installed), we…

Chris
- 599
- 7
- 23
3
votes
2 answers
use node.js express on iis with iisnode
I got a node.js express application and i need to make it run on my local IIS server so i can send valid http requests to it and work with the responses.
I am using win 10 and IIS 10.
I followed the different guides about working with iisnode in…

Ivgi
- 541
- 1
- 6
- 21
3
votes
1 answer
process.env.PORT is undefined
I am trying to go to production on one of my node.js applications which runs ion windows server 2012. After a week of troubleshooting and reading everything I could get to online, the problem seems to be the "process.env.PORT" variable.
The…

chran
- 119
- 8
3
votes
0 answers
Alternatives to iisNode for my Express.js app?
I've ran into a rather interesting and unique situation regarding my current web application.
As of right now, I have a React front end, with a PHP backend that sends MSSQL data to the React front end. React sends requests using axios, and PHP…

Andy Wong
- 73
- 2
- 12
3
votes
1 answer
Access-Control-Allow-Origin issue with CORS and HTTPS redirect (IIS / IISNode / NodeJS)
I have a web application that is in two parts:
The "front-end" based in Angular (under Chrome) running on localhost:8000
The "back-end" based in ExpressJS/NodeJS, running on localhost:3000
In trying to gradually convert the application to entirely…

jhenderson2099
- 956
- 8
- 17
3
votes
1 answer
Port being undefined in the Azure Node.js application running on IISNode
I have an Azure App Service running Node.js application using IISNode. The problem is that process.env.PORT is undefined. I have read that IISNode uses a thing called named pipes and that the port information might not be easily readable (?), but in…

Tx3
- 6,796
- 4
- 37
- 52
3
votes
0 answers
Problems with url routing in IISnode Node js?
So, here is my situation.This is my first time deploying a node application in Windows. So, far I have been frustrated to the extreme. The problem is routing the url. I have written a very simple testapplication and wanted to test it in Windows…

Rachel Morris
- 127
- 5
- 11
3
votes
0 answers
Cannot read property 'setSecurity' of undefined - Node JS, Strong-Soap
I try to deploy my node application inside the "IIS 8". I have installed iisnode.
The basic application is running perfectly.
But I go with SOAP, I am getting below error.
Application has thrown an uncaught exception and is terminated:
TypeError:…

sankaran
- 143
- 1
- 3
- 11
3
votes
1 answer
IISnode - making the node process always working
I'm running a nodeJS REST api on windows server using IIS7.5 with iisnode.
I note that the node process is not always active in background so sometimes response takes more time due to loading since it needs to create all connections and other stuff…

MaxBk
- 157
- 1
- 15