iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.
Questions tagged [iisnode]
400 questions
2
votes
0 answers
HTTP Error 500.1013 - Internal Server Error IIS Node Azure App Service
Error Message
While sending more than 240MB files in the HTTP Request body, We have an error 500.1013 and we have used the Azure App Service (Ubuntu) for hosting our application.

Sheldon Anto
- 41
- 3
2
votes
1 answer
How to host Node JS app on IIS 10 with Windows Server 2019
I have configured all those things which are necessary for iisnode. But when i browse the site through http://localhost/Backend (Backend is a site name hosted on iis) then nothing is being happened and page keeps loading.
My web.config:

Asif Hussain
- 93
- 2
- 3
- 12
2
votes
0 answers
API endpoint works in browser URL but not client application
I'm new to web development so maybe I'm way off. I'm inside an intranet and want to use windows authorization for my front end react app. I'm able to access the endpoint from the browser URL but I get error 401 unauthorized inside my react…

Eman4real
- 538
- 5
- 12
2
votes
0 answers
How to run nodejs on IIS
I want to run my nodejs project on IIS.
I got this message:
iisnode encountered an error when processing the request.
HRESULT: 0x2
HTTP status: 500
HTTP subStatus: 1002
HTTP reason: Internal Server Error
You are receiving this HTTP 200 response…

S.M_Emamian
- 17,005
- 37
- 135
- 254
2
votes
1 answer
iisnode on Windows 10 Pro - from Internal error 500.19 to Error code: 0x800F0954
I got a new PC at work with Windows 10 Pro and had to setup iisnode on it...
I started by installing nodeJS (v8.11.3)
got & installed iisnode-full-v0.2.21-x64
got and installed urlrewrite2
went to the iisnode installation folder to run…

Akber Iqbal
- 14,487
- 12
- 48
- 70
2
votes
1 answer
Is it a good idea to use NodeJS terminal or iisnode
I have micorosoft windows server 2012 r2 and I have nodejs as web and api server and I want to deply it in production mode. But my question is should i install forever npm module and set to production mode and run via command prompt and may be write…

Michael Seltene
- 543
- 1
- 5
- 17
2
votes
2 answers
ExpressJS: The custom error module does not recognize this error
I'm running an Express.JS backend, and have it set to return a 422 error with a custom message if a user attempts to sign up with an email that's already in use, like so:
const existingUser = await User.findOne({ email: email });
if…

Boris K
- 3,442
- 9
- 48
- 87
2
votes
2 answers
Deploying Node App in IIS
I'm trying to deploy node app on windows server 2012 R2 and facing issue while doing the same.
Server: Windows Server 2012 R2
1) I've installed IIS node from https://github.com/tjanczuk/iisnode/wiki/iisnode-releases [iisnode for iis 7/8(x64)]
2)…

parthsw
- 97
- 1
- 2
- 9
2
votes
0 answers
Nuxt-Express Deploying to Azure Issue
I am trying to get a nuxt with express web app deployed to an Azure Web App running Node. Here's what I have done so far:
Created a build using VSTS
Deployed build to Azure Web App using VSTS release (using MS's Azure App Service Deploy task)
I…

Paul
- 155
- 14
2
votes
1 answer
ReferenceError: webpackJsonp is not defined
I have a VUE 2 application which doesn't run with iisnode and iis. The stderr log of iisnode says: ReferenceError: webpackJsonp is not defined
node version: 6.9.5
npm version: 4.3.0
This topic is mentioned often here, but the solution didn't work…

Dominik2000
- 135
- 1
- 8
2
votes
1 answer
How to fix 500.1002 error in Azure?
We have 500.1001 or 500.1002 errors after success building our app. We tried to bundle our app to root and to public - error 500. We tried to correct iisnode.yml parameters (maxNamedPipeConnectionRetry and namedPipeConnectionRetryDelay). Our app…

Dmitrij Podabed
- 121
- 1
- 11
2
votes
2 answers
Hosting a Loopback API in IIS using IISNode
I have built an API using Loopback. Now that it's time to host it on my Windows machine, Googling turned up two distinct options: 1) using NSSM to create a Service, or 2) using IISNode, a IIS module, to host the API using an IIS process. Since the…

user3356792
- 31
- 4
2
votes
2 answers
iisnode 401 message returns iis page
I am building an application for which i am using nodejs express to do rest api services.
I hosted that application on windows server 2012 using iisnode module.Everything works perfect.
The issue is that when i am returning 404(unauthorized) message…

M14
- 1,780
- 2
- 14
- 31
2
votes
1 answer
During IISnode initialisation my Meteor application fails to connect to Mongodb
Our deployment process follows a stop staging slot, deploy, start staging slot, swap to production slot.
Intermittently our application fails to initialise with the below error:
We have probed into this type of issue and can point to two…

Hoffmania
- 926
- 2
- 7
- 15
2
votes
1 answer
Has anyone created a Node.js, Angular2 application running under IISNode?
We have created an application that runs on node.js using Angular2 but you have not launch it with "npm" which uses the lite-server. However, we are being told that we much run under IIS but the problem is npm loads all of the packages for you…

Mike Griffin
- 21
- 1