Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/soketi/impl


https://github.com/soketi/impl

ably helia ipfs libp2p p2p pusher real real-time realtime sockets soketi time web websocket websockets ws

Last synced: 2 months ago
JSON representation

Awesome Lists containing this project

README

        

> The πŸ‡·πŸ‡Ί Russian invasion of πŸ‡ΊπŸ‡¦ Ukraine breaches any law, including the UN Charter. [#StandWithUkraine](https://github.com/vshymanskyy/StandWithUkraine)

> Open-source is not about political views, but rather humanitar views. It's code by the people for the people. Unprovoked, unjustifiable and despicable action that is killing civilians is not tolerated. The [Renoki Co.](https://github.com/renoki-co) subsidiaries (including Soketi) has taken action to move away from Russian software and dependencies and block any access from Russia within their projects.

# Soketi Implementation

[![CI](https://github.com/soketi/impl/actions/workflows/ci.yml/badge.svg?branch=master)](https://github.com/soketi/impl/actions/workflows/ci.yml)
[![codecov](https://codecov.io/gh/soketi/impl/branch/master/graph/badge.svg)](https://codecov.io/gh/soketi/impl/branch/master)
[![Latest Stable Version](https://img.shields.io/github/v/release/soketi/impl)](https://www.npmjs.com/package/@soketi/impl)
[![Total Downloads](https://img.shields.io/npm/dt/@soketi/impl)](https://www.npmjs.com/package/@soketi/impl)
[![License](https://img.shields.io/npm/l/@soketi/impl)](https://www.npmjs.com/package/@soketi/impl)

[![Artifact Hub](https://img.shields.io/endpoint?url=https://artifacthub.io/badge/repository/soketi)](https://artifacthub.io/packages/search?repo=soketi)
[![StandWithUkraine](https://raw.githubusercontent.com/vshymanskyy/StandWithUkraine/master/badges/StandWithUkraine.svg)](https://github.com/vshymanskyy/StandWithUkraine/blob/master/docs/README.md)
[![Discord](https://img.shields.io/discord/957380329985958038?color=%235865F2&label=Discord&logo=discord&logoColor=%23fff)](https://discord.gg/VgfKCQydjb)

Soketi Implementation is a TypeScript boilerplate to use on your WebSocket implementations. This represents a customizable single point of entry for your server, no matter what framework you are using.

## General Implementations

The package comes with default implementations for the usual WebSocket operations, but as well as specific ones, like Pusher.

This is not providing a WebSocket server, but rather a way to implement your own WebSocket server, no matter what framework you are using.

In the examples, we will assume a pseudo-WebSocket server (not tied to any real use case).

### Connections

This implementation provides a tracking of connections for the server:

```js
import { Connections, Connection } from '@soketi/impl';

const conns = new Connections();

server.on('new-connection', async originalConnection => {
// Generate a unique ID for the connection.
const uniqueId = Math.random() * 1e5;

// If possible, associate the unique ID with the original connection.
// This can be used later to get the connection.
originalConnection.id = uniqueId;

// Create a new connection instance, binding
// the send and close methods to the underlying WebSocket.
const connection = new Connection(uniqueId, {
id: uniqueId,
send: (message) => originalConnection.send(message),
close: (...args) => originalConnection.close(...args),
});

// Add the connection to the connections tracker.
await conns.newConnection(connection);
});
```

This way, you can track connections and send messages to them:

```js
for (const conn of conns.connections) {
// .send will call the send method of the underlying WebSocket.
await conn.send('Hello!');
}
```

To undo and remove a connection from the tracker, you can use `removeConnection`:

```js
await conns.removeConnection(connection);
```

### Handlers for Websocket events

The package provides a way to handle WebSocket events at the general level,
so that you don't have to implement them yourself. You will be defining both
the handlers, as well as the calls to them, in a static way.

```js
import { Router as WsRouter } from '@soketi/impl';
import { Connections, Connection } from '@soketi/impl';

const conns = new Connections();

WsRouter.onNewConnection(async conn => {
// As explained earlier in the connections, you can use it to add it to a tracker.
await conns.newConnection(conn);
await conn.send('Hello!');
});

server.on('new-connection', async originalConnection => {
const connection = new Connection(...);

// Handle the connection via the router.
// This will call the handler defined above.
await WsRouter.handleNewConnection(connection);
});
```

The router provides handlers for the following events:

- `onNewConnection(async (conn, ...args?) => {})` with `handleNewConnection(connection, ...args?)`
- `onConnectionClosed(async (conn, code, msg, ...args?) => {})` with `handleConnectionClosed(connection, code, msg, ...args?)`
- `onMessage(async (conn, message, ...args?) => {})` with `handleMessage(connection, message, ...args?)`
- `onError(async (conn, error, ...args?) => {})` with `handleError(connection, error, ...args?)`

You can also register your own handlers:

```js
import { Router as WsRouter } from '@soketi/impl';

// Register a ping handler.
WsRouter.registerHandler('onPing', async conn => {
await conn.send('Pong!');
});

server.on('ping', async originalConnection => {
// Get the existing connection on a ping or message.
if (conns.connections.get(originalConnection.id)) {
await WsRouter.handle('onPing', connection);
}
});
```

### Pusher

- Public Channels βœ…
- Presence Channels βœ…
- Private Channels βœ…
- Encrypted Private Channels βœ…
- Client Events βœ…
- Webhooks ❌
- REST API ❌
- Metrics ❌

See more: [Pusher Channels](https://pusher.com/channels)