View Source PhxJsonRpc

Simple implementation of JSON-RPC server, working with phoenix.

Allows you to define any number of rpc endpoints, which can be accessed via http protocol.

how-it-works

How it works

The package uses router macro for matching RPC calls to your end-user service.

It uses JSON SCHEMA as a specification for your services and provides parsing, validation and error handling briefly.

Requests can be served in batches with asyncronous order.

See documentation section for more detail.

installation

Installation

The package can be installed by adding phx_json_rpc to your list of dependencies in mix.exs:

def deps do
  [
    {:phx_json_rpc, "~> 0.2.2"}
  ]
end

This package depends on ex_json_schema for validation purposes.

quick-start

Quick start

Please see this guide for usage with phoenix.

documentation

Documentation

The docs can be found at https://hexdocs.pm/phx_json_rpc.

The package creation was inspired by some other repos:

license

License

MIT. Please see the license file for more information.