RSS

Monthly Archives: April 2016

Angular-Fullstack on IIS 7.5 server

Hi Folks, imagine that you can run node’s application on IIS 7.5 server.

mean&IIS7

Many asp.net developer would ask why switching to node.js applications, well I tell some of the benefits enclose in this new technology.

– It’s run by a very fast JavaScript engine developed by google called V8 where applications run super fast
– It has websockets technology for live real time data applications.
– Process management, IIS is takes care of the lifetime of the application, like re starting it or stopping it, and monitoring its process.
– Scalability on multi-core servers, since node.js is a single threaded process you may created multiple node processes per application, the enable the full utilization of the server’s CPU capacity without any extra infrastructure code from the developer.
– Same javascript language for client, middleware, and server side code

SMALL GUIDE LINK

 

 

 
Leave a comment

Posted by on April 19, 2016 in Software Engineering