Hot Code Loading in Node.js


Liminal Existence: Hot Code Loading in Node.js

Now, any time you modify myRequestHandler.js, the above code will notice and replace the local requestHandler with the new code. Any existing requests will continue to use the old code, while any new incoming requests will use the new code. All without shutting down the server, bouncing any requests, prematurely killing any requests, or even relying on an intelligent load balancer.

Automatically reflect changes to .js files in node.js, without restarting the server

Related Posts