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.
var Channel = require('gojs').Channel;
var go = require('gojs').go;
var bind = require('gojs').bind;
var then = require('gojs').then;
// Ref: http://swannodette.github.io/2013/08/24/es6-generators-and-csp/
//
go(function* (chan) {
db.query('SELECT 1', chan);
var r1 = yield chan;
request('http://www.google.com', chan);
var r2 = yield;
redis.get('k1', chan);
redis.hget('k2', chan);
var rk1 = yield;
var rk2 = yield;
go(function* (ch2) {
db.query('SELECT 1', bind(ch2, 'r3'));
db2.query('SELECT 3', bind(ch2, 'r4'));
var rx = yield;
var ry = yield;
chan(null, rx[1] + ry[1]);
});
try {
var rz = yield;
} catch (e) {}
var ch3 = Channel();
db.query('SELECT 1 FROM dummy', then(ch3, function (res) { ch3(null, res[0]); }));
db2.query('SELECT 3', chan);
var r3 = yield ch3;
var r4 = yield;
});
FAQs
Interactive diagrams, charts, and graphs, such as trees, flowcharts, orgcharts, UML, BPMN, or business diagrams
The npm package gojs receives a total of 56,621 weekly downloads. As such, gojs popularity was classified as popular.
We found that gojs demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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.