
Security News
Meet Socket at Black Hat Europe and BSides London 2025
Socket is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.
async-fn-catch
Advanced tools
Async function error handling can be tricky. As the author of a plugin I don't want to create nearly impossible errors to catch. I like them to be exposed to the user in a simple interface.
This is a solution I have found to be useful.
npm install async-fn-catch --save
# or
yarn add async-fn-catch
// import function
const asyncCatch = require('async-fn-catch')
// or
import asyncCatch from 'async-fn-catch'
This first example shows how you wrap a function with async-fn-catch to make the error super easy to catch. You could do the same by adding a .catch to the foo() call. Which is essentially what this lib is doing.
const errorHandler = err => console.log(err) // just log error
const foo = asyncCatch(
async function fooAsync () {
await bar() // error happens in here
},
errorHandler
)
async function bar () {
... // do complex stuff
throw new Error('qux')
}
foo() // logs -> Error "qux"
This next example shows how error handling with async can get a bit trickier when dealing with methods in a class.
class Foo extends EventEmitter {
constructor () {
super()
this.bar = asyncCatch(
this.bar.bind(this),
this.onError.bind(this)
)
}
onError (err) { this.emit('error', err)}
async bar () { await this.baz() }
async baz () { throw new Error('qux') }
}
const foo = new Foo()
foo.on('error', (err) => console.log(err))
foo.bar() // logs -> Error "qux"
FAQs
async function error catching can be a bit tricky
We found that async-fn-catch 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 is heading to London! Stop by our booth or schedule a meeting to see what we've been working on.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.