Hello everyone!
There is a new official adapter for Socket.IO: the Redis Streams adapter.
Hello everyone!
There is a new official adapter for Socket.IO: the Redis Streams adapter.
Hello everyone!
I'm happy to announce that Socket.IO is now compatible with Deno, which is a runtime for JavaScript and TypeScript written in Rust.
Usage:
import { serve } from "https://deno.land/std@0.150.0/http/server.ts";
import { Server } from "https://deno.land/x/socket_io@0.1.1/mod.ts";
const io = new Server();
io.on("connection", (socket) => {
console.log(`socket ${socket.id} connected`);
socket.emit("hello", "world");
socket.on("disconnect", (reason) => {
console.log(`socket ${socket.id} disconnected due to ${reason}`);
});
});
await serve(io.handler(), {
port: 3000,
});
And then run with:
$ deno run --allow-net index.ts
The API is very similar to the one exposed by the Node.js implementation.
Next steps:
Feedback is welcome!
Hello everyone!
We have just published a new minor version of Socket.IO: 4.5.0
Hello everyone!
We have just published a new minor version of Socket.IO: 4.4.0
Hello everyone!
We have just published a new minor version of Socket.IO: 4.3.0
Hi everyone!
Here's the #5 edition of our Monthly update.
Hello everyone!
We have just published a new minor version of Socket.IO: 4.1.0
Hi everyone!
Here's the #4 edition of our Monthly update.
Hi everyone!
We have published a first release of the Socket.IO Admin UI:
Hi everyone!
Here's the #3 edition of our Monthly update.