最新消息:雨落星辰是一个专注网站SEO优化、网站SEO诊断、搜索引擎研究、网络营销推广、网站策划运营及站长类的自媒体原创博客

node.js - Private rooms using yjs and ws for collaborative code-editor - Stack Overflow

programmeradmin1浏览0评论

I am trying to implement the collaborative code-editor, using yjs and ws.

I want to isolate the editor into rooms i.e only the room members can edit it but the problem i am facing here is that the changes are begin broadcasted to all the rooms.

below is the back-end code, i also tried socket.io but yjs seem to be not compatible.

const { setupWSConnection } = require("y-websocket/bin/utils");
const WebSocket = require("ws");
const Y = require("yjs");
const docs = new Map();
const connections = new Map();

module.exports = (server) => {
    const wsServer = new WebSocket.Server({ server, perMessageDeflate: false });

    wsServer.on("connection", (ws, req) => {
        try {
            const url = new URL(req.url, `http://${req.headers.host}`);
            let roomId = url.searchParams.get("room");

            if (!roomId) {
                console.log("❌ No room ID provided, closing connection.");
                ws.close();
                return;
            }

            console.log(`
发布评论

评论列表(0)

  1. 暂无评论