Research
Security News
Malicious npm Packages Inject SSH Backdoors via Typosquatted Libraries
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
A stupidly easy flow control function.
flow contol should be seamless, you should be able to say what you want done, and say kgo.
kgo(result name, [dependencies], asynchronous function);
where result name is an arbitrary string that can be concidered a name for the output of the function,
dependencies is an array of strings that map to the output of another function,
and asynchronous function is a function that, when complete, calls a callback with its results.
kgo returns itsself, so it can be chained:
kgo(name, deps, fn)(name, deps, fn)(name, deps, fn)
require kgo:
var kgo = require('./kgo');
use kgo:
kgo('things', function(cb){
//Something async
setTimeout(function(){
cb(null, 1);
}, 100);
})('stuff', function(cb){
//Something async
setTimeout(function(){
cb(null, 2);
}, 100);
})('whatsits', ['things', 'stuff'], function(things, stuff, cb){
//Something async
setTimeout(function(){
cb(null, things + stuff);
}, 100);
})('dooby', ['things'], function(things, cb){
//Something async
setTimeout(function(){
cb(null, things/2);
}, 100);
})(['whatsits', 'dooby'], function(whatsits, dooby, cb){
//Done
console.log(whatsits, dooby);
});
The above will log 3, 0.5;
Yeah them annoying things.
You can assign error handlers to your functions by name, if you want to.
kgo
(calles)
(more calles)
.errors({
'stuff':function(error){
// will recieve the Whoops error.
}
});
FAQs
Flow control the super easy way
We found that kgo demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 2 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.
Research
Security News
Socket’s threat research team has detected six malicious npm packages typosquatting popular libraries to insert SSH backdoors.
Security News
MITRE's 2024 CWE Top 25 highlights critical software vulnerabilities like XSS, SQL Injection, and CSRF, reflecting shifts due to a refined ranking methodology.
Security News
In this segment of the Risky Business podcast, Feross Aboukhadijeh and Patrick Gray discuss the challenges of tracking malware discovered in open source softare.