top | item 1330155

Weekend hack - Node.js on the .NET runtime

28 points| dnewcome | 16 years ago |newcome.wordpress.com | reply

5 comments

order
[+] bad_user|16 years ago|reply
Microsoft's JScript is in a poor shape and is being deprecated. They'll probably build another interpreter on top of the DLR.

I don't know how good or complete the alternatives are though (probably not as mature as Rhino) ... http://github.com/fholm/IronJS ; http://jint.codeplex.com/

[+] dnewcome|16 years ago|reply
Thanks for the comments. It looks like Node.net should port to any of those Javascript implementations. The basic requirements are the ability to use functions as delegates for callbacks from the host platform and thread sync primitives to serialize access to the event dispatch queue.
[+] ejones|16 years ago|reply
You could just write a mixed-mode assembly to bridge V8 to the .NET thread pool and libraries...
[+] contextfree|16 years ago|reply
My understanding is that IE9 does have a new JS runtime, but it doesn't use the CLR/DLR at all.