0

Is there a way to install node.js in IIS7?

I have very little experience with node.js but the idea of writing server-side JavaScript intrigues me.

  • 2
    Node.js is its own server - just like IIS or Apache or Nginx, etc. It is likely that you may use IIS for certain requests (e.g. existing CMSes, etc) and node.js for other request types (e.g. real-time communications). They will end up on different ports, and your application will either communicate directly with each server or one server will proxy to the other (which would large defeats the point of node.js). – cyberx86 Nov 21 '11 at 23:31

1 Answers1

2

Yes it can be done. Check out the iisnode project on GitHub. Scott Hanselman also has a nice article about it on his blog.

Marco Miltenburg
  • 1,121
  • 8
  • 9