iisnode is a native IIS module that allows hosting of node.js applications in IIS on Windows.
Questions tagged [iisnode]
400 questions
33
votes
2 answers
Windows Azure Websites is overriding my 404 and 500 error pages in my node.js app
I am using Windows Azure Websites to host a node.js application. So far everything is great except for my custom errors. In my node app I have an error handler that renders a custom 404 and custom 500 error page just fine on my local machine.…

CatDadCode
- 58,507
- 61
- 212
- 318
31
votes
4 answers
How to run Node.JS server for a web application?
Info: I am very new to node.JS!
I have written a sample server that can listen to http requests on port XXXX. When I run this server from commandline (Windows) it seems to work well. It responds to the requests made to localhost:XXXX when opened in…

Ramanpreet Singh
- 860
- 2
- 8
- 14
19
votes
5 answers
Node.js native module is not a valid Win32 application error
Trying to make Hello World native module for node.js
Got an Win32 Project in VS 2012 with one file:
#include
#include
using namespace v8;
Handle Method(const Arguments& args) {
HandleScope scope;
return…

Vladimir Makhaev
- 1,104
- 2
- 10
- 23
17
votes
3 answers
IIS, Node.js, and Web Application with IISNode not configured right with Virtual Directory
I have the following setup in IIS:
Default Web Site (www.foo.com) hosting standard html site
Web Application underneath Default Web Site (www.foo.com/bar) running IIS Node
Node project is utilizing express
I cannot for the life of me get this…

poindexter12
- 1,775
- 1
- 14
- 20
15
votes
2 answers
How to implement Socket.IO with ASP.Net, IISNode, Node.JS, and SQL Server for event-based push notifications?
For a notification project, would like to push event notifications out. These are things like login, change in profile, etc., and to be displayed to the appropriate client. I would like to discuss some ideas on putting it together, and get some…

ElHaix
- 12,846
- 27
- 115
- 203
13
votes
0 answers
500.1013 error when using iisnode and express
I have an express app running in my machine. I am even able to run it in production by using node server instead of issnode.
When trying to make it run in iisnode I'm getting the following error when trying to run my express application:
HRESULT:…

Alvaro
- 40,778
- 30
- 164
- 336
11
votes
1 answer
HTTPS and iisnode
I'm using node in combination with IIS by using iisnode.
I seems to me that things that I was previously doing in Node to configure the server can now be done directly in IIS.
Things like:
https configuration (and certificates)
http to https…

Alvaro
- 40,778
- 30
- 164
- 336
11
votes
1 answer
Possible to have a NodeJS app under iisnode authenticate with ASP.NET FormsAuthentication?
1) We have a NodeJS app that we need to host under IIS 7.5/Win2k8 R2.
2) We have other apps that already use ASP.NET FormsAuthentication.
3) The users that will use the NodeJS app are the same users as existing apps' users.
So we put…

offthemesh
- 111
- 3
10
votes
1 answer
How to Host node application in IIS?
I am developing an application in mean-stack. The only the difference is that I want to host my application in IIS rather than express.js. Is it possible or feasible to do so? What are possible advantages and disadvantages? Thanks in advance.

Prashant Mohite
- 758
- 2
- 7
- 19
10
votes
5 answers
Error: EPERM, operation not permitted with Node.js and Etherpad Lite
I'm attempting to get an Etherpad Lite site up and running with IIS on my computer before I upload it to Azure for Web Sites, but I get this error when I try (http://pastebin.com/4rZWbqix):
iisnode encountered an error when processing the request.…

MatthewSot
- 3,516
- 5
- 39
- 58
10
votes
1 answer
Access web.config settings from iisnode?
If I add settings to my app's web.config file, is there an API to read the settings from my app or do I have to read the file using an XML library?

Sylvain
- 19,099
- 23
- 96
- 145
9
votes
5 answers
iisnode module is unable to start the node.exe process
Hi I am trying run node on IIS as a subdirectory of an existing website.
https://somewebsite/node like so
Download and installed to the windows machine https://github.com/azure/iisnode/wiki/iisnode-releases
And it works but when I go to a specific…

Learn in Tamil
- 301
- 1
- 2
- 6
8
votes
2 answers
iisnode - IIS7.5: 405 Method not allowed when performing PUT request
I started to do some experimentation with iisnode and expressjs to create a REST like API with node.
So on the server.js I created something like
app.put("/test", function(req, res){
...
});
However, when I execute the PUT request I get a 405…

Juri
- 32,424
- 20
- 102
- 136
8
votes
2 answers
Node.js + Express based app not running with iisnode
I am doing some experiments with node.js + express and iisnode.
I have the following very simple app, located in C:\tsapp-deploy\tsappsvr\TestExpress\0.0.0:
app.js:
var express = require('express');
var app =…

eca
- 411
- 1
- 4
- 11
7
votes
1 answer
How to run node application developed using ts-node on Azure app service
Most of the documentation for a node application on azure app service is around running using iisnode module handler which uses app.js or server.js like files.
What if we want to run the same application which we are developing all along using…

Nexus23
- 6,195
- 9
- 50
- 67