A simple, secure light and unified way to run a top level async function addressing some common edge cases.
Its main use case is for creating Node CLIs.
Do I really need this? No, if you are asking. Yes, if a simple IIFE doesn't do the job and you find yourself dealing with unexpected bugs and copy/pasted workarounds. Node.js 14.8 added top level
await
so you may not need this.
- 0️⃣ No dependency
- 🐭 Minimal and readable code
- ⚠ On throw, sets the process exit code to a non-zero value (
1
) - Listens to
unhandledRejection
error and prints the stack trace and the name of the faulty function and sets the process exit code to a non-zero value (2
) - 🏳 Works with
async
functions, native or custom promises - 💌 Passes arguments as parameters to the main function
- 💊 Supports custom error handlers
npm i am
(no pun intended!) 😎
We ♥ async
functions but what if the main logic of your application runs asynchronously?
Top level await
is not supported because of complications.
Most of the times a naïve Immediately Invoked Function Expression does the job:
(async function main() {
// my async-await logic
})()
That does not look elegant but it works. Kinda! If main()
throws, you're dealing with an Unhandled Promise Rejection.
You get this:
UnhandledPromiseRejectionWarning: Unhandled promise rejection. This error originated either by throwing inside of an async function without a catch block, or by rejecting a promise which was not handled with .catch(). (rejection id: 1)
[DEP0018] DeprecationWarning: Unhandled promise rejections are deprecated. In the future, promise rejections that are not handled will terminate the Node.js process with a non-zero exit code.
Despite that, the process exit code remains 0 which means if you're chaining your script in a bash script (using &&
for example), the rest of the chain will continue.
am
grew to handle these kinds of edge cases in a standard way. It stands for async main and works like this:
const am = require('am')
am(async function main() {
// my async-await logic
})
Or even:
const am = require('am')
async function main() {
// my async-await logic
}
am(main)
As a bonus it passes the node CLI parameters to main. So if you call your file like:
$ node my-script.js apple orange
Then your main()
function gets them as two arguments:
// my-script.js
const am = require('am')
am(async function main(foo, bar) {
console.log(foo) // "apple"
console.log(bar) // "orange"
})
If you prefer, you can directly pass those CLI params to something more sophisticated like minimist
:
// my-script.js
const am = require('am')
const minimist = require('minimist')
am(async function main(...cliArgs) {
const argv = minimist(cliArgs)
console.dir(argv) // { _: ["apple", "orange" ] }
})
am(main, errorHandler?): void
main
is anasync
or sync (traditional) function. If there's an error theerrorHandler
will be called, otherwise a default error handler will be used which prints the error and sets theprocess.exitCode
to1
.- The
main
function will get the CLI arguments as its parameters in the order they were typed by the user. - When you first call
am
, it will listen tounhandledRejection
event and prints the error message referring to the failed promise and sets theprocess.exitCode
to2
. The default or providederrorHandler
will not be called (that way you can callam()
as many times as needed) errorHandler
an optionalasync
or sync (traditional) function that'll be called if themain()
function throws. It takes the error as its argument. Even if you provide your custom error handler, we still set theprocess.exitCode
to1
if you forget to set it to a non-zero value. Also, if your customerrorHandler
throws for whatever reason,am
will use its default error handler.
The am()
function returns a promise which always resolves to the value returned from main()
.
Made in Sweden by @alexewerlof