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.
@broofa/asyncproxy
Advanced tools
A simple, intuitive solution for converting node-style APIs to Promises.
A simple, intuitive solution for converting node-style APIs to Promises.
This module is similar to utilities such as bluebird.promisifyAll
and
promiseproxy
. The main difference is that it's behavior is driven by calling
code rather than magical introspection or ad-hoc configuration options.
Key features ...
api.fooAsync()
== api.foo()
-promisified.You know the drill ...
npm i @broofa/asyncproxy
const asyncProxy = require('@broofa/asyncproxy');
fs.readFile
(basic usage)// Wrap api in asyncProxy()
const fs = asyncProxy(require('fs'));
// An asyncProxy-ified apis is *identical* to the original api
console.log(fs === require('fs')); // ==> true
// ... but promisifies any method invoked as `${methodName}Async`
const fileContents = await fs.readFileAsync('README.md', 'utf8');
child.exec
(multiple callback arguments)Anytime 2+ arguments are passed to a callback, the Promise resolves to an argument Array:
// Promisified `exec` method
const child_process = asyncProxy(require('child_process'));
// Use array destructuring to extract result values
let [stdout, stderr] = await execAsync('ls');
Appending Async
to indicate a promise-returning method is the general
convention, but this may not always be desirable. The methodRegex
option
is used to detect which methods should be promisified.
E.g. To use an "async_"-prefix:
const fs = asyncProxy(require('fs'), {methodRegex: /^async_/});
const fileContents = await fs.async_readFile('README.md', 'utf8');
FAQs
A simple, intuitive solution for converting node-style APIs to Promises.
We found that @broofa/asyncproxy 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.