0.3.5 • Published 2 years ago

zerva-websocket v0.3.5

Weekly downloads
-
License
MIT
Repository
-
Last release
2 years ago

🌱 Zerva WebSocket module

This is a side project of Zerva

Plain resilient WebSocket connections with Zerva.

Get started

import { useWebSocket } from "zerva-websocket"

useHttp({ port: 8080 })
useWebSocket()

Communication

Variant A: Channel

By establishing a connection you get a Zeed Channel to send raw string or binary data between server and client. The interfaces are the same for client and server side. On server side minimal code looks like this:

on("webSocketConnect", ({ channel }) => {
  channel.postMessage("Hello World")
  channel.on("message", (msg) => {
    console.log(msg.data)
  })
})

Client side like this:

const channel = new WebSocketConnection()
channel.on("connect", () => {
  channel.postMessage("Hello World")
})
channel.on("message", (msg) => {
  console.log(msg.data)
})

Variant B: Message Interface

You can also use the Zeed Message overlay to have a convenient messaging infrastructure. First define the methods the server should listen to:

interface Messages {
  echo(msg: string): string
}

Then implement them in on the server side:

on("webSocketConnect", ({ channel }) => {
  useMessageHub({ channel }).listen<Messages>({
    echo(message) {
      return message
    },
  })
})

On the client side you may connect easily and call the messages:

const channel = new WebSocketConnection()
const send = useMessageHub({ channel }.send<Messages>()

let response = await send.echo("Hello World")
expect(response).toBe("Hello World")

Variant C: PubSub Interface

Similar to Messages is the PubSub interface.

Features

Reconnection / Resilience

For a connection you always receive one Channel. This channel might be disconnected due to network issues, but once it reconnects you can continue to use the same Channel. You can check the state via channel.isConnected.

Both the client and the server try to stay connected and send ping/pong (heart beat) messages. On failure the client tries to reconnect. The Channel events connect and disconnect help to manage states in your app in case the connection is lost. You don't need to reconnect yourself.

Encoding

Communication uses binary data. Encoding is usually provided by Message, PubSub and others using JSON. You can plug in any other encoding, e.g. crypto or compression.

Alternatives

Similar projects:

0.3.5

2 years ago

0.3.2

2 years ago

0.3.4

2 years ago

0.3.3

2 years ago

0.2.12

3 years ago

0.2.11

3 years ago

0.2.10

3 years ago

0.2.9

3 years ago

0.3.1

3 years ago

0.2.8

3 years ago

0.2.7

3 years ago

0.2.6

3 years ago

0.2.5

3 years ago

0.2.4

3 years ago

0.2.2

3 years ago