Files
tether/example/client/index.ts
T

8 lines
215 B
TypeScript

import { TetherClient } from "tether-ts";
const client = new TetherClient();
client.connect("ws://localhost:8080/tether");
client.subscribe("messages", (message) => {
console.log("Received message", message);
});