https://github.com/andybons/jsonrpc_example
A JSON-RPC example from Node to Go
https://github.com/andybons/jsonrpc_example
Last synced: about 2 months ago
JSON representation
A JSON-RPC example from Node to Go
- Host: GitHub
- URL: https://github.com/andybons/jsonrpc_example
- Owner: andybons
- License: mit
- Created: 2015-10-06T01:32:22.000Z (over 10 years ago)
- Default Branch: master
- Last Pushed: 2015-10-06T01:40:16.000Z (over 10 years ago)
- Last Synced: 2025-07-07T03:18:52.298Z (11 months ago)
- Language: Go
- Size: 137 KB
- Stars: 1
- Watchers: 1
- Forks: 3
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# JSON-RPC Example
Going from a Node client to a Go server.
## Run
```sh
go run server.go
# In a different window...
npm install json-rpc2
DEBUG=jsonrpc node index.js
```