Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Calling Haskell from Node.JS

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.

like image 936
nponeccop Avatar asked Nov 04 '22 03:11

nponeccop


1 Answers

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

like image 78
sclv Avatar answered Nov 11 '22 02:11

sclv