
Security News
Software Engineering Daily Podcast: Feross on AI, Open Source, and Supply Chain Risk
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.
async-forward
Advanced tools
Forward methods to asynchronously acquired objects.
Specify the method names you want to forward, and provide a callback for getting the object that should receive forwarded method calls.
var assert = require('assert')
var forward = require('./')
var methods = ['doSomethingAsync']
var proxy = forward(['double'], getSlowDoubler)
proxy.double(4, function (err, result) {
assert.equal(8, result)
console.log('ok - async method works')
})
The getSlowDoubler function looks like this, but it could be any sort of
async function, as long as it returns an object with the expected methods:
function getSlowDoubler (callback) {
var service = {
double: function (n, callback) {
setTimeout(function () {
callback(null, n * 2)
}, 100)
}
}
// return the service asynchronously via callback
process.nextTick(function () {
callback(null, service)
})
}
Any errors that occur while getting the method receiver will be forwarded to the callback:
function throwsAnError (callback) {
throw new Error('whoops')
}
var proxy = forward(['myMethod'], throwsAnError)
proxy.myMethod(function (err) {
assert.equal('whoops', err.message)
console.log('ok - got expected error')
})
The same behaviour will work for errors that are returned via callback or thrown when invoking the method.
MIT
FAQs
forward methods to asynchronously acquired objects
We found that async-forward 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
Socket CEO Feross Aboukhadijeh joins Software Engineering Daily to discuss modern software supply chain attacks and rising AI-driven security risks.

Security News
GitHub has revoked npm classic tokens for publishing; maintainers must migrate, but OpenJS warns OIDC trusted publishing still has risky gaps for critical projects.

Security News
Rust’s crates.io team is advancing an RFC to add a Security tab that surfaces RustSec vulnerability and unsoundness advisories directly on crate pages.