Use the new npm SDK package:
@swarm-keydb/clientsdk/js/docs/js-sdk.mdQuick start:
import { createClient } from '@swarm-keydb/client';
const client = createClient({ wsUrl: 'ws://127.0.0.1:8765/' });
await client.connect();
await client.set('hello', 'world');
console.log(await client.get('hello'));