1.0.0 • Published 5 months ago

collaborative-ace v1.0.0

Weekly downloads
-
License
-
Repository
github
Last release
5 months ago

Ace editor collaborative editing binding

Makes a plain Ace editor instance collaborative by binding it to a JSON CRDT document str node. This allows multiple users to edit the same document json-joy JSON CRDT document concurrently through the Ace editor.

Usage

Installation:

npm install json-joy ace-builds collaborative-ace

Usage:

import {bind} from 'collaborative-ace';
import {Model} from 'json-joy/es2020/json-crdt';

// ...

const unbind = bind(str, editor);

// When done, unbind the binding.
binding.unbind();

Preview