Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
@busyorg/busyjs
Advanced tools
A lightweight JavaScript library for Busy
npm install @busyorg/busyjs --save
var busy = require('@busyorg/busyjs');
// Init WebSocket client
var client = new busy.Client('wss://gtg.steem.house:8090');
// Get accounts
client.call('get_accounts', ['fabien'], function(err, result) {
console.log(err, result);
});
You can also use Busy.js with promises by promisifying busy with bluebird as in:
var busy = require('@busyorg/busyjs');
bluebird.promisifyAll(busy.Client.prototype);
It'll add a Async to all busy functions (e.g. return client.callAsync().then())
// So instead of writing client.request('get_accounts', ['fabien'], cb); you have to write:
return client.callAsync('get_accounts', ['fabien']).then(function(result) {
console.log(result); // => [{ id: 26921, name: 'fabien' ...]
});
MIT.
FAQs
A lightweight JavaScript library for Busy
We found that @busyorg/busyjs demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
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
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.