
Security News
GPT-6 Astra Attempts Supply Chain Attacks Against Open Source Maintainers in Testing
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.
@jsonjoy.com/collaborative-codemirror
Advanced tools
Binding for collaborative editing support in CodeMirror Editor. Connects JSON CRDT str node to CodeMirror Editor.
Makes a plain CodeMirror 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 CodeMirror editor.
Installation:
npm install json-joy @jsonjoy.com/collaborative-codemirror codemirror
Usage:
import {EditorView} from 'codemirror';
import {bind} from '@jsonjoy.com/collaborative-codemirror';
import {Model, s} from 'json-joy/lib/json-crdt';
// Create a JSON CRDT model.
const model = Model.create(s.str(''));
// Create a CodeMirror editor instance.
const editor = new EditorView({parent: div});
// Connect CodeMirror editor to JSON CRDT document "str" node.
const unbind = bind(() => model.s.toApi(), editor);
// When done, unbind the binding.
unbind();
FAQs
Binding for collaborative editing support in CodeMirror Editor. Connects JSON CRDT str node to CodeMirror Editor.
We found that @jsonjoy.com/collaborative-codemirror demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.

Security News
GPT-6 Astra hits 100% on ExploitBench and finds zero-days autonomously, while independent tests reveal scope violations and monitoring gaps.

Product
Socket can now send alerts and supply chain attack notifications to Microsoft Teams, with filters that route the right updates to each channel.

Security News
pnpm 12 rewrites the package manager in Rust, cutting install times by up to 90% while preserving pnpm 11 workflows and lockfiles.