https://github.com/tbreuss/json-rpc-example
A super simple JSON-RPC example based on Laminas JSON-RPC Server, OpenRPC Client JS, and Mithril.
https://github.com/tbreuss/json-rpc-example
example-project json-rpc json-rpc-client json-rpc-server laminas mithriljs openrpc
Last synced: 7 months ago
JSON representation
A super simple JSON-RPC example based on Laminas JSON-RPC Server, OpenRPC Client JS, and Mithril.
- Host: GitHub
- URL: https://github.com/tbreuss/json-rpc-example
- Owner: tbreuss
- Created: 2021-08-28T13:41:06.000Z (about 4 years ago)
- Default Branch: main
- Last Pushed: 2021-09-19T05:55:50.000Z (about 4 years ago)
- Last Synced: 2025-01-12T07:09:59.595Z (9 months ago)
- Topics: example-project, json-rpc, json-rpc-client, json-rpc-server, laminas, mithriljs, openrpc
- Language: JavaScript
- Homepage:
- Size: 368 KB
- Stars: 1
- Watchers: 3
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# JSON-RPC Example
A super simple JSON-RPC example based on [Laminas JSON-RPC Server](https://docs.laminas.dev/laminas-json-server/),
[OpenRPC Client JS](https://github.com/open-rpc/client-js), and [Mithril](https://mithril.js.org/).## Install
composer install
npm install## Run
Frontend
npm run start
Backend
php -S localhost:9999 -t web/
## Build
Frontend
npm run build