Using a C#.net DLL in Node.js / serverside javascript
- by Dve
I have spent a while playing with node.js and exploring related frameworks such as express and geddy... and I am very impressed, especially with the WebSockets implementation in socket.io.
I have a pet project that is an online game, the entire game engine is written in C# and I would like to know if there is anyway I can call the functions of this existing dll from a solution built using node.js, socket.io, express etc?
The game engine itself is pretty complete; tested and robust. I am hoping there is some neat way of exposing its functionality without to much overhead.
Thanks