
Product
Reachability for Ruby Now in Beta
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.
@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.

Product
Reachability analysis for Ruby is now in beta, helping teams identify which vulnerabilities are truly exploitable in their applications.

Research
/Security News
Malicious npm packages use Adspect cloaking and fake CAPTCHAs to fingerprint visitors and redirect victims to crypto-themed scam sites.

Security News
Recent coverage mislabels the latest TEA protocol spam as a worm. Here’s what’s actually happening.