1
0
mirror of https://github.com/thib8956/tic-tac-toe-ws.git synced 2024-11-17 01:16:33 +00:00
tic-tac-toe-ws/client.mts

8 lines
137 B
TypeScript
Raw Normal View History

2024-09-02 20:34:24 +00:00
const ws = new WebSocket("ws://localhost:1234");
ws.onopen = (e) => {
console.log("connected to server");
ws.send("hello");
};