https://github.com/mfelsche/pony-json-rpc
JSON-RPC 2.0 Server Implementation in Pony
https://github.com/mfelsche/pony-json-rpc
Last synced: about 2 months ago
JSON representation
JSON-RPC 2.0 Server Implementation in Pony
- Host: GitHub
- URL: https://github.com/mfelsche/pony-json-rpc
- Owner: mfelsche
- Created: 2019-03-23T20:24:01.000Z (about 6 years ago)
- Default Branch: master
- Last Pushed: 2019-04-01T10:29:26.000Z (about 6 years ago)
- Last Synced: 2025-01-20T04:18:55.789Z (3 months ago)
- Language: Pony
- Size: 20.5 KB
- Stars: 1
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON-RPC 2.0 (Pony)
This is a Pony implementation of a JSON-RPC 2.0 server. When looking at how this library is organized, it is worth keeping in mind that [JSON-RPC 2.0](http://www.jsonrpc.org/specification) is a _transport agnostic_ protocol. As such, the dispatching mechanism in this library is designed to work without regard for how the JSON payloads are received or emitted. Not only does this conform to the JSON-RPC 2.0 protocol, but it makes for far more testable code.
## NOT COMPLETE
This is a work in progress. Please don't try and use this yet.