偷偷摘套内射激情视频,久久精品99国产国产精,中文字幕无线乱码人妻,中文在线中文a,性爽19p

如何僅用JavaScript實(shí)現(xiàn)實(shí)時(shí)協(xié)作文本編輯器

開發(fā) 前端
我不想用Firebase,不想碰Node.js,更不想搞Redis發(fā)布訂閱或CRDT數(shù)據(jù)庫。我只要兩個(gè)瀏覽器標(biāo)簽頁——哪怕在不同設(shè)備上——能同時(shí)編輯同一份文檔,并神奇地同步變更。

你沒看錯(cuò)。我開發(fā)了一款類似Google Docs的協(xié)作編輯器,能夠實(shí)時(shí)同步多瀏覽器端的編輯內(nèi)容——完全基于JavaScript實(shí)現(xiàn),無需服務(wù)器后端、不依賴WebSocket、零框架加持。這聽起來像魔法,但背后的核心技術(shù)是被低估的WebRTC。

1. 為什么選擇無后端實(shí)時(shí)編輯器

你是否也曾有過那種"理論上行不通但就是念念不忘"的想法?我的執(zhí)念是:

「"能否僅用純JavaScript打造類似Google Docs的編輯器...完全不需要后端?"」

我不想用Firebase,不想碰Node.js,更不想搞Redis發(fā)布訂閱或CRDT數(shù)據(jù)庫。我只要兩個(gè)瀏覽器標(biāo)簽頁——哪怕在不同設(shè)備上——能同時(shí)編輯同一份文檔,并神奇地同步變更。

最終發(fā)現(xiàn),WebRTC + BroadcastChannel + 操作轉(zhuǎn)換(OT) 就是完美解決方案。

2. 架構(gòu)設(shè)計(jì):如何實(shí)現(xiàn)無服務(wù)器同步?

我的架構(gòu)方案如下:

┌────────────┐ BroadcastChannel ┌────────────┐  
│ 標(biāo)簽頁A   │ ─────────────────────────? │ 標(biāo)簽頁B   │  
│ localhost  │ ?───────────────────────── │ localhost  │  
└────────────┘                         └────────────┘
        ?                                       ?
     WebRTC                                WebRTC
        ?                                       ?
     終端A  <──────────────────────────> 終端B

核心技術(shù)組件:

  • WebRTC:實(shí)現(xiàn)跨設(shè)備的點(diǎn)對點(diǎn)連接
  • BroadcastChannel:同步同一設(shè)備不同標(biāo)簽頁的編輯
  • 操作轉(zhuǎn)換(OT):解決編輯沖突問題

最神奇的是——只要允許WebRTC使用不安全源(或用Python的http.server托管)——這套方案甚至能在file://協(xié)議下運(yùn)行。

3. 搭建基礎(chǔ)文本編輯器

從最簡單的HTML+JavaScript編輯器開始:

<textarea id="editor" rows="20" cols="80">你好,世界!</textarea>
<script>
const editor = document.getElementById("editor");
</script>

添加變更監(jiān)聽和廣播功能:

editor.addEventListener("input", () => {
  const content = editor.value;
  broadcastChange(content);
});

4. 通過BroadcastChannel實(shí)現(xiàn)標(biāo)簽頁同步

這是最簡單的同步方案:

const channel = new BroadcastChannel("collab_editor");

function broadcastChange(content) {
  channel.postMessage({ type: "update", content });
}

channel.onmessage = (e) => {
  if (e.data.type === "update") {
    editor.value = e.data.content;
  }
};

現(xiàn)在打開兩個(gè)標(biāo)簽頁,一處修改會(huì)實(shí)時(shí)同步到另一處——完全無需后端支持。??

但僅限于同設(shè)備,接下來我們要實(shí)現(xiàn)跨設(shè)備同步。

5. 通過WebRTC連接遠(yuǎn)程瀏覽器

WebRTC讓瀏覽器直接通信(經(jīng)過簡短的信號交換后無需服務(wù)器中轉(zhuǎn))。我們使用零依賴的simple-peer庫:

<script src="https://unpkg.com/simple-peer/simplepeer.min.js"></script>

let peer = newSimplePeer({
initiator: location.hash === "#host",
trickle: false
});

peer.on("signal", data => {
document.getElementById("signal").value = JSON.stringify(data);
});

document.getElementById("connect").onclick = () => {
let remoteData = JSON.parse(document.getElementById("remote").value);
  peer.signal(remoteData);
};

peer.on("connect", () => {
console.log("?? 遠(yuǎn)程連接成功!");
});

peer.on("data", data => {
let msg = JSON.parse(data);
if (msg.type === "update") {
    editor.value = msg.content;
  }
});

functionbroadcastChange(content) {
if (peer.connected) {
    peer.send(JSON.stringify({ type: "update", content }));
  }
}

添加信號交換UI:

<textarea id="signal" placeholder="你的信號數(shù)據(jù)"></textarea>
<textarea id="remote" placeholder="粘貼對方的信號數(shù)據(jù)"></textarea>
<button id="connect">連接</button>

現(xiàn)在設(shè)備A將信號數(shù)據(jù)發(fā)給設(shè)備B,點(diǎn)擊連接——編輯內(nèi)容就能通過互聯(lián)網(wǎng)同步了,全程無需服務(wù)器。

6. 使用操作轉(zhuǎn)換解決編輯沖突

當(dāng)兩人同時(shí)編輯時(shí)會(huì)出現(xiàn)覆蓋問題,我們需要實(shí)時(shí)合并修改。這就是**操作轉(zhuǎn)換(OT)**的價(jià)值:

<script src="https://unpkg.com/ot/lib/ot.min.js"></script>

let doc = new ot.Document(editor.value);

editor.addEventListener("input", () => {
const oldValue = doc.text;
const newValue = editor.value;

const operation = ot.TextOperation.fromDiff(oldValue, newValue);
  doc = doc.apply(operation);

const message = JSON.stringify({ 
    type: "ot", 
    operation: operation.toJSON() 
  });
  peer.send(message);
});

peer.on("data", data => {
let msg = JSON.parse(data);
if (msg.type === "ot") {
    const op = ot.TextOperation.fromJSON(msg.operation);
    doc = doc.apply(op);
    editor.value = doc.text;
  }
});

現(xiàn)在編輯操作會(huì)智能合并,而非簡單覆蓋,實(shí)現(xiàn)了完整的并發(fā)控制。

7. 通過LocalStorage實(shí)現(xiàn)自動(dòng)保存

為防止內(nèi)容丟失,添加簡易自動(dòng)保存:

setInterval(() => {
  localStorage.setItem("autosave", editor.value);
}, 1000);

window.onload = () => {
  const saved = localStorage.getItem("autosave");
  if (saved) editor.value = saved;
};

雖然簡陋,但免費(fèi)且支持離線工作。

8. 單文件部署方案

整個(gè)應(yīng)用——包含文本編輯器、P2P網(wǎng)絡(luò)、自動(dòng)保存和并發(fā)控制——只需單個(gè)HTML文件:

editor.html  # 在多個(gè)標(biāo)簽頁或設(shè)備中打開即可

可部署在任何平臺:GitHub Pages、Netlify,甚至python3 -m http.server。

沒有后端、無需數(shù)據(jù)庫、零月租費(fèi)用。

反思:這改變了我的協(xié)作工具開發(fā)觀

曾經(jīng)我以為實(shí)時(shí)應(yīng)用必須依賴Firebase、復(fù)雜的WebSocket邏輯或分布式系統(tǒng)專家。但這次實(shí)踐讓我明白:

「現(xiàn)代瀏覽器的能力令人震驚,而大多數(shù)開發(fā)者只觸及了皮毛」

僅用原生JavaScript,你就能打造媲美Google Docs的實(shí)時(shí)協(xié)作應(yīng)用。這套方案現(xiàn)已應(yīng)用在我的結(jié)對編程工具、實(shí)時(shí)代碼審查面板甚至AI代理調(diào)試器中。

進(jìn)階建議:若想達(dá)到Google Docs級別,可添加:

  • 通過contentEditable實(shí)現(xiàn)富文本編輯
  • position元數(shù)據(jù)顯示協(xié)作者光標(biāo)
  • WebRTC失敗時(shí)的云端回退方案
  • 通過Yjs或Automerge實(shí)現(xiàn)CRDT支持

稍加擴(kuò)展,你的周末項(xiàng)目就能達(dá)到生產(chǎn)級水準(zhǔn)。

原文鏈接:https://medium.com/javascript-in-plain-english/how-i-built-a-real-time-collaborative-text-editor-using-javascript-and-no-backend-f76190efee6e 作者:Suleman safdar

責(zé)任編輯:武曉燕 來源: 前度小石匠
相關(guān)推薦

2017-11-16 17:35:13

GitHub文本編輯代碼

2018-01-05 14:48:03

前端JavaScript富文本編輯器

2020-12-23 22:25:11

Vi文本編輯器Unix

2010-03-24 09:20:07

CentOS vi編輯

2021-01-07 11:00:59

Sed文本編輯器Linux

2022-05-13 15:32:11

GNOME文本編輯器

2020-12-29 06:34:55

KDE Plasma文本編輯器

2017-07-27 20:21:06

iOSUITableView富文本編輯器

2023-04-17 11:03:52

富文本編輯器MTE

2023-05-11 07:34:36

Yjs協(xié)同編輯

2021-01-03 16:57:43

heredoc文本編輯器Linux

2016-09-23 20:30:54

Javascriptuiwebview富文本編輯器

2011-05-11 10:27:42

文本編輯器

2013-11-18 10:08:56

工具免費(fèi)編程工具

2009-12-09 10:27:03

VS 2005文本編輯

2012-09-29 11:38:27

編程工具文本編輯器編程

2022-01-18 09:35:36

GNOME編輯器Linux

2015-06-26 11:11:50

GitHub Ato文本編輯器

2014-06-05 10:34:54

Notepad++

2012-04-11 10:35:22

jEditorJava
點(diǎn)贊
收藏

51CTO技術(shù)棧公眾號