@y-rb/actioncable
v0.2.1
Published
> A WebSocket provider for Y.js that works with ActionCable
Downloads
2,692
Readme
yrb-actioncable
A WebSocket provider for Y.js that works with ActionCable
Installation
With npm:
npm install @y-rb/actioncable
With yarn:
yarn add @y-rb/actioncable --save
Usage
import {Doc} from "yjs";
import {WebsocketProvider} from "@y-rb/actioncable";
import {createConsumer} from "@rails/actioncable";
const document = new Doc();
const consumer = createConsumer();
const provider = new WebsocketProvider(
document,
consumer,
"SyncChannel",
{path: "issues/1"}
);