
Security News
Crates.io Implements Trusted Publishing Support
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
@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
Crates.io adds Trusted Publishing support, enabling secure GitHub Actions-based crate releases without long-lived API tokens.
Research
/Security News
Undocumented protestware found in 28 npm packages disrupts UI for Russian-language users visiting Russian and Belarusian domains.
Research
/Security News
North Korean threat actors deploy 67 malicious npm packages using the newly discovered XORIndex malware loader.