From 0378e26969e00be15dad40d21e8053016fbf4f11 Mon Sep 17 00:00:00 2001 From: Jared Miller Date: Tue, 27 Jan 2026 21:52:52 -0500 Subject: [PATCH] Add stack to readme --- README.md | 13 +++++++++---- 1 file changed, 9 insertions(+), 4 deletions(-) diff --git a/README.md b/README.md index b77bbc5..d601596 100644 --- a/README.md +++ b/README.md @@ -1,12 +1,12 @@ # collabd -editor-agnostic collaborative editing daemon. two vims, one buffer. +editor-agnostic collaborative editing daemon ## quick start ```bash bun install -just dev # starts daemon on :4040 +just dev # starts daemon on :4040 ``` in vim (requires 9.0+): @@ -15,8 +15,13 @@ in vim (requires 9.0+): :CollabJoin roomname ``` -open another vim, join the same room, type in either. magic. +## stack + +- bun runtime +- [yjs](https://github.com/yjs/yjs) for crdt +- websocket transport +- vim9script adapter (with bun bridge since vim can't do websocket) ## more info -see CLAUDE.md for architecture, protocol, and how to add new editor adapters. +see [CLAUDE.md]() for architecture, protocol, and how to add new editor adapters.