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.
async-compat
Advanced tools
Compatibility functions for writing libraries that support synchronous, callback and promise signatures
Compatibility functions for writing libraries that support synchronous, callback and promise signatures.
It handles both the call signature differences between callback and promises APIs (eg. missing the last callback parameter) by converting them to callbacks. It also resolves returned parameters when promises are returned.
var compat = require(async-compat');
var assert = require(assert');
/////////////////
// asynchronous
/////////////////
function fn(value1) {
assert.equal(value1, 1);
return 4;
}
compat.asyncFunction(fn, false /* no callback */, 1, function (err, result) {
assert.ok(!err);
assert.equal(result, 4);
});
function errorFn(value1) {
assert.equal(value1, 1);
return new Error('Failed');
}
compat.asyncFunction(errorFn, false /* no callback */, 1, function (err, result) {
assert.ok(!!err);
});
/////////////////
// callback
/////////////////
function callbackFn(value1, callback) {
assert.equal(value1, 1);
callback(null, 4);
}
compat.asyncFunction(callbackFn, true /* use callback */, 1, function (err, result) {
assert.ok(!err);
assert.equal(result, 4);
});
function errorCallbackFn(value1, callback) {
assert.equal(value1, 1);
callback(new Error('Failed'));
}
compat.asyncFunction(errorCallbackFn, true /* use callback */, 1, function (err, result) {
assert.ok(!!err);
});
/////////////////
// promise
/////////////////
function promiseFn(value1) {
assert.equal(value1, 1);
return Promise.resolve(4);
}
compat.asyncFunction(promiseFn, false /* no callback */, 1, function (err, result) {
assert.ok(!err);
assert.equal(result, 4);
});
function errorPromiseFn(value1) {
assert.equal(value1, 1);
return Promise.reject(new Error('Failed'));
}
compat.errorPromiseFn(promiseFn, false /* no callback */, 1, function (err, result) {
assert.ok(!!err);
});
FAQs
Compatibility functions for writing libraries that support synchronous, callback and promise signatures
The npm package async-compat receives a total of 574 weekly downloads. As such, async-compat popularity was classified as not popular.
We found that async-compat 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.
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.