coracle-social / multiplextr

A dynamic relay proxy for nostr

Home Page:https://coracle.social

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Multiplextr

A dynamic relay proxy for nostr. Easy to self-host, easy to connect to.

How it works

A multiplexer needs additional information about how to route messages to and from a client, so it uses a wrapped variant of the nostr protocol. Every message is a JSON-encoded array, where first entry is multiplexer metadata, and the second is a nostr message.

For example, a client might send [{"relays": ["wss://my-relay.example.com", "wss://my-other-relay.example.com"]}, ["REQ", "my-subscription", <filter>]]. Multiplextr will unwrap that message and send the subscription along to the relay specified. When receiving a response, it will wrap it and send it back to the client, for example, an event received from my-other-relay would be sent to the client as [{"relays": ["wss://my-other-relay.example.com"]}, ["EVENT", <event>]].

This is quite easy to implement using the paravel library for building nostr clients (and relay tools like this one).

About

A dynamic relay proxy for nostr

https://coracle.social

License:MIT License


Languages

Language:JavaScript 98.6%Language:Shell 1.4%