I am a complete noob when it comes to both Node.Js and Erlang. But wouldn't it be possible to build a Node.js app that emulates Erlang behavior?
e.g. you pass json messages across an distributed node.js server park and even pass new code to those servers w/o going offline, just like erlang.
If you have a message handler callback that is activated when a message is received, then this message handler could check if the message is a code update message and thus replace itself(the current handler) with the new code.
So it should be possible to have Node.Js servers with no downtime for code updates w/o too much fuss, right?
Here is a blog comparing experiences using Erlang and Node.js:
http://blog.mysyncpad.com/post/2073441622/node-js-vs-erlang-syncpads-experience
Here is another comparison which purposefully does not compare speed as such:
http://jlouisramblings.blogspot.com/2010/12/differences-between-nodejs-and-erlang_14.html
Not completely right.
OK, first you obviously need to have validation etc. in place, that shouldn't be a big problem. The first small problem arises from JSON, which does not allow for any JS code/functions in it, well you can work around that by sending the data as a string.
Next problem, when you want to replace function/method you need to make sure that it keeps it's scope, so that the newly compiled functions has access to the same things.
With some dark
eval
magic this is certainly possible, but don't expect it to be anywhere near as natural as it's in Erlang:Output
This is not guaranteed to work in 100% of all cases and scopes. Also, the syntax is horrible, so I'd suggest if you want hot swapping, stay with Erlang.
Remember: Right tool for the right job.
Update
There won't be anything better than that in the near future see:
https://github.com/ry/node/issues/issue/46#issue/46/comment/610779
Don't have enough points to comment inline, but I wanted to respond to Ivo Wetzel's comment above at rvirding's post. There is an updated blog on mysyncpad where the author uses the version of nodejs specifically recommended by the nodejs and v8 developers.
http://blog.mysyncpad.com/post/2143658273/syncpad-node-js-server-revisited
I assume With script module you could execute javascript without reloading the server.
supervisor
But then again it will reload(very short time offline) when it detects file changes.