I want to make RPC calls of Haskell code from Node.js. What libraries exist for both node and Haskell? I could only found XML-RPC and zeromq, but they seem to be unstable.
Asked
Active
Viewed 778 times
1 Answers
2
for xml-rpc on the Haskell side, the haxr library has been around for a long time and remains supported: http://hackage.haskell.org/package/haxr-3000.8.5

sclv
- 38,665
- 7
- 99
- 204
-
1https://github.com/baalexander/node-xmlrpc is an XML-RPC client and server for Node.js. It's actively developed and should be stable. – baalexander Apr 02 '12 at 13:23