the-forest/client/node_modules/@libsql/isomorphic-ws
2024-09-17 20:35:18 -04:00
..
node_modules/ws client raw doggin the db 2024-09-17 20:35:18 -04:00
index.d.ts client raw doggin the db 2024-09-17 20:35:18 -04:00
node.cjs client raw doggin the db 2024-09-17 20:35:18 -04:00
node.mjs client raw doggin the db 2024-09-17 20:35:18 -04:00
package.json client raw doggin the db 2024-09-17 20:35:18 -04:00
README.md client raw doggin the db 2024-09-17 20:35:18 -04:00
web.cjs client raw doggin the db 2024-09-17 20:35:18 -04:00
web.mjs client raw doggin the db 2024-09-17 20:35:18 -04:00

@libsql/isomorphic-ws

This package provides WebSocket on Node (using ws) and in Deno and Cloudflare Workers (using the native WebSocket). Supports both CommonJS and ES modules.

import { WebSocket } from "@libsql/isomorphic-ws";

const ws = new WebSocket("ws://localhost:8080");
ws.onopen = (event) => {
    ws.send("Hello");
};
ws.onmessage = (event) => {
    console.log(event.data);
    ws.close();
};