Search npm for packages to use with Deno
Add them to your projects with a simple command that will already feel familar.
apr-engine-iterator
apr-engine-run
apr-engine-each
apr-engine-until
apr-intercept
Intercepts errors, the Go way!
apr-reduce
Reduces coll into a single value using an async iteratee to return each successive step.
apr-map
Produces a new collection of values by mapping each value in coll through the iteratee function.
apr-engine-sum
apr-find
Returns the first value in coll that passes an async truth test.
apr-parallel
Run the tasks collection of functions in parallel, without waiting until the previous function has completed.
apr-for-each
Applies the function iteratee to each item in coll, in parallel.
apr-main
Catches a promise error, writes the stacktrace to stderr and exists
apr-engine-back
apr-filter
Returns a new array of all the values in coll which pass an async truth test.
apr-seq
Version of the compose function that is more natural to read. Each function consumes the return value of the previous function. It is the equivalent of compose with the arguments reversed.
apr-until
Repeatedly call fn until test returns true.
apr-some
Returns true if at least one element in the coll satisfies an async test.
apr-engine-repeat
apr-awaitify
Transform a callback-based function into a promise-based one.
apr-waterfall
Runs the tasks array of functions in series, each passing their results to the next in the array.