Popularity
3.3
Declining
Activity
4.4
-
3
2
3

Monthly Downloads: 77
Programming language: Haskell
License: GNU General Public License v3.0 only
Tags: Conduit    
Latest version: v0.3.0

jsonrpc-conduit alternatives and similar packages

Based on the "Conduit" category.
Alternatively, view jsonrpc-conduit alternatives based on common mentions on social networks and blogs.

Do you think we are missing an alternative of jsonrpc-conduit or a related project?

Add another 'Conduit' Package

README

jsonrpc-conduit implements the basic building block of a JSON-RPC 2.0 server.

It provides a Conduit that consumes RPC requests and invokes user-provided functions to handle them. Conversion of values to and from JSON is almost completely automatic thanks to the aeson library.

The JSON-RPC conduit is generic with respect to the channel used to exchange data with the client. It can use a network connection or, for example, the standard input / ouput of a process. The latter is demonstrated by the "jsonrpc-conduit-demo" executable, which can be compiled using the "demo" flag.

Build Status