Broker - Real-time BaaS (Backend as a Service)

crates.io

Purpose

The purpose of this service is to be your real-time BaaS (Backend as a Service).

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.

Features

How it works

In Broker you create a user, login, then insert an event with its data. Broker then publishes the event via SSE.

When the client first subscribes to the SSE connection 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. This is pure NoSQL as the backend is agnostic to the event data.

Recommeded Services/Libraries to use with Broker

Broker FAQ

Firebase is not open-source, is not free, and has complicated pricing. Parse Server doesn't have real-time features and is about 30,000 LOC of JS.

Yes with React Native. There may be native 3rd party libraries for SSE that work. In the future official libraries may be made available for native platforms.

Use

Step 1 - create a user

html POST /users - public endpoint - POST JSON to create a user json {"username":{...}, "password":{...}} - where {...} is for username is a string and password is a string

will return 200 or 500 or 400

For JWT Auth: Step 2 - login with the user

html POST /login - public endpoint - POST JSON to login json {"username":{...}, "password":{...}} - where {...} is for username is a string and password is a string

will return json {"jwt":{...}} - where {...} is a JWT (string)

Step 3 - connect to SSE

html GET /sse - authenticated endpoint (Authorization: Bearer {jwt}) - connect your sse-client to this endpoint using broker-client - note: broker-client uses fetch as eventsource doesn't support headers

Step 4 - insert an event

html POST /insert - authenticated endpoint (Authorization: Bearer {jwt}) - POST JSON to insert an event json {"event":{...}, "data":{...}} - where {...} is for the event a string and data is any JSON you want

will return: 200 or 500 or 400 or 401

Install

cargo install broker

TechStack

Inspiration

Migrations