The purpose of this library is to be your real-time zero-code API server.
Broker is a SSE message broker that requires you write no backend code to have a full real-time API.
Broker is born from the need that rather than building a complex REST API with web-sockets and a SQL database to provide reactive web forms (like for React) there must be a simpler way.
Broker follows an insert-only/publish/subscribe paradigm rather than a REST CRUD paradigm.
In Broker you insert an event and its data via a JSON POST request (/insert). Broker publishes the latest event to an event stream via SSE (/events) and keeps all versions in its database that can be viewed in a JSON GET request (/audit/{event}).
When the client first subscribes to the SSE connection (/events) all the latest events and data is sent to the client. Combined with sending the latest event via SSE when subscribed negates the necessity to do any GET API requests in the lifecycle of an event.
The side-effect of this system is that the latest event is the schema. Old events are saved in the database and are not changed but the latest event is the schema for the front-end. This is pure NoSQL as the backend is agnostic to the event data.
```rust use broker::{broker_run};
async fn main() -> std::result::Result<(), std::io::Error> { brokerrun("*".toowned()).await } ```
./tmp
of the project root/events
- connect your sse-client to this endpoint
/insert
- POST JSON to insert an event
json
{"event":{...}, "data":{...}}
- where {...} is for the event a string and data is any JSON you want
/audit/{event}
- do a GET request where {event} is the name of the event you want the audit log
- the audit log will be {event}_v_{timestamp}
as the key with the data as a value
make
make client
https://broker-demo.apibill.me
Real-time events across all connected clients: Open the demo in two browser windows watching both. Type in the name field in one and both browser windows will display the name you typed.
Sync latest events on client connection: Refresh one of the browsers and the name will be still be the current name and not blank.