
Security News
Deno 2.6 + Socket: Supply Chain Defense In Your CLI
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.
@usecanvas/sharejs-wrapper
Advanced tools
This is a wrapper around the somewhat confusing ShareJS API, and it also tries to simplify handling disconnected WebSocket clients.
The full documentation can be found here.
The ShareJS Wrapper object is an event emitter. Create a wrapper, and the wrapper should take care of setting itself up and emitting events at the proper times.
var ShareJSWrapper = require('sharejs-wrapper');
var share = new ShareJSWrapper({
accessToken: user.apiAccessToken,
canvasID: canvasID,
realtimeURL: 'wss://api.usecanvas.com/realtime',
orgID: orgID
});
// Tell the client to connect to the ShareJS server.
share.connect(function onConnect() {
// Get the current content of the document.
console.log(share.content);
// Send insert/remove operations to the server.
share.insert(0, 'insert some text');
share.remove(0, 'remove some text'.length);
// Handle an `insert` event from the server.
share.on('insert', function onInsert(op) {
// Handle an insert
});
// Handle a `remove` event from the server.
share.on('remove', function onRemove(op) {
// Handle a remove
});
});
/*
* Handle an unexpected disconnect event from the server. This happens when the
* client disconnects without having `.disconnect()` called, and several
* reconnection attempts fail.
*/
share.on('disconnect', function onDisconnect(err) {
console.log(err.message);
});
// Manually disconnect the client.
share.disconnect();
An example can be found in
test/server/public/main.js.
FAQs
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
Deno 2.6 introduces deno audit with a new --socket flag that plugs directly into Socket to bring supply chain security checks into the Deno CLI.

Security News
New DoS and source code exposure bugs in React Server Components and Next.js: what’s affected and how to update safely.

Security News
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.