NostrBridge provides one-to-one message forwarding as a relay server between NOSTR clients.
NostrBridge provides two core features aimed at facilitating WebSocket connection forwarding and message forwarding under the Nostr protocol. Below is a detailed description of these features:
The first feature of NostrBridge is to forward a WebSocket connection from one server to a specified Nostr relay server.
Specifically, when connecting to wss://myserver.com/wss://relay.nostr.band/
, NostrBridge will forward the request to the target address wss://relay.nostr.band/
, which can be any relay server supporting the Nostr protocol.
- Source connection:
wss://myserver.com/wss://relay.nostr.band/
- Target connection:
wss://relay.nostr.band/
(can be any other relay server supporting the Nostr protocol)
The second feature of NostrBridge allows for forwarding messages between two Nostr clients. By connecting to wss://myserver.com
, NostrBridge can forward messages from one client to another based on the predefined message format.
The message format is as follows:
const messageData = {
action: 'message',
from: from, // Sender client
to: to, // Receiver client
message: message // Message content
};
map relay {pubkey:relayserver}
- ** relay server register pubkey to bridge**
- client connect relay server by bridge + pubkey
url = "wss://bridge.xxx.com/pubkey/1ba6b866701217bf985dc6c7206b87dc473be936cef856cba753a25e6ba1c3a4"
new WebSocket(url)
node src/cli.js
cli.js by config.js register your relay server to bridge
Yes. support IP is 192.168.1.xxx .
- Bridge Server: Domain name
bridge.xxx.com
- Relay Server:
- Public Domain:
relay.xxx.com
- Private Network
- Public Domain:
- Client
-
Accessing Relay Server through Bridge
- Users can access the Relay server through the Bridge server using the format:
wss://bridge.xxx.com/wss://relay.xxx.com
- Users can access the Relay server through the Bridge server using the format:
-
Accessing Relay Server via Bridge using PubKey
- Users can access the Relay server through the Bridge server using the format:
wss://bridge.xxx.com/pubkey/[PubKey]
- This requires the Relay server to be registered with the Bridge server
- Users can access the Relay server through the Bridge server using the format:
-
Accessing Private Network Relay Server through Bridge using PubKey
- Users can access the Private Network Relay server through the Bridge server and PubKey using the format:
wss://bridge.xxx.com/pubkey/[PubKey]
- This requires the Private Network Relay server to be registered with the Bridge server
- Users can access the Private Network Relay server through the Bridge server and PubKey using the format:
-
Directly Accessing Public Relay Server
- Users can directly access the Public Relay server but cannot directly access the Private Network Relay server