Upon popular demand for YAML configuration (or rather lack of demand for angle brackets of web.config), iisnode v0.1.20 adds support for specifying configuration options in a YAML file. This allows you to use an established, user-friendly format to control most aspects of hosting node.js applications in IIS on Windows using...

One would think that a function is a function is a function. Right? Wrong. Consider this node.js code: 1 2 3 4 5 6 7 8 var f = function () {} console.log('f instanceof Function in the main context: ' + (f instanceof Function)) require('vm').runInNewContext( "console.log('f instanceof Function in child...

If you are reading this, you have obviously clicked already once to get to this post. So you only have 1 click left – use it on one of the sample links below. Then you can experiment more with haiku-http, read about haiku-http vision and design, or get the code...

Lately I have been working on haiku-http: an experiment to create a node.js-based, multi-tenant runtime for hosting HTTP APIs within a single process. The key objective of the project is to find out if we can reduce the cost of hosting HTTP APIs written in node.js by securely and reliably...

There is one striking parallel between fine arts and software engineering: it is easy to produce a complex outcome and incredibly hard to simplify it to the few essential lines that define the core of the message. Think hard then write code. Think harder then throw away most of it....

I have recently released http://gissues.com, a whiteboard for GitHub issues. It was the first web application I developed entirely on Mac OS. As such there were several choices I needed to make regarding technologies to use as well as development environment and tools. This post describes in some detail these...

The iisnode project allows hosting node.js applications in IIS on Windows. Some of the benefits of hosting node.js in IIS are outlined here. Version 0.1.10 of iisnode has just shipped and includes the following improvements: Added performance and stress test framework with a first basic test. The framework requires the...

The iisnode project allows hosting node.js applications in IIS on Windows. As of version 0.1.9, iisnode includes fully integrated debugging experience based on the excellent node-inspector debugger by Danny Coates. These are the benefits of the integrated debugging in iisnode: No-config deployment on Windows: host your node.js application in IIS...

Last week Carl Franklin and Richard Campbell from DotNetRocks interviewed me about running node.js applications on Windows. This is an introductory talk meant to introduce the node.js framework to .NET developers without prior experience with it. It also highlights the efforts around making Windows a great platform to run node.js...