You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
mn a0e4803194
test
11 months ago
..
LICENSE test 11 months ago
README.md test 11 months ago
all.js test 11 months ago
allLimit.js test 11 months ago
allSeries.js test 11 months ago
angelFall.js test 11 months ago
any.js test 11 months ago
anyLimit.js test 11 months ago
anySeries.js test 11 months ago
apply.js test 11 months ago
applyEach.js test 11 months ago
applyEachSeries.js test 11 months ago
async.js test 11 months ago
async.min.js test 11 months ago
asyncify.js test 11 months ago
auto.js test 11 months ago
autoInject.js test 11 months ago
cargo.js test 11 months ago
compose.js test 11 months ago
concat.js test 11 months ago
concatLimit.js test 11 months ago
concatSeries.js test 11 months ago
constant.js test 11 months ago
createLogger.js test 11 months ago
detect.js test 11 months ago
detectLimit.js test 11 months ago
detectSeries.js test 11 months ago
dir.js test 11 months ago
doDuring.js test 11 months ago
doUntil.js test 11 months ago
doWhilst.js test 11 months ago
during.js test 11 months ago
each.js test 11 months ago
eachLimit.js test 11 months ago
eachOf.js test 11 months ago
eachOfLimit.js test 11 months ago
eachOfSeries.js test 11 months ago
eachSeries.js test 11 months ago
ensureAsync.js test 11 months ago
every.js test 11 months ago
everyLimit.js test 11 months ago
everySeries.js test 11 months ago
fast.js test 11 months ago
filter.js test 11 months ago
filterLimit.js test 11 months ago
filterSeries.js test 11 months ago
find.js test 11 months ago
findLimit.js test 11 months ago
findSeries.js test 11 months ago
foldl.js test 11 months ago
foldr.js test 11 months ago
forEach.js test 11 months ago
forEachLimit.js test 11 months ago
forEachOf.js test 11 months ago
forEachOfLimit.js test 11 months ago
forEachOfSeries.js test 11 months ago
forEachSeries.js test 11 months ago
forever.js test 11 months ago
groupBy.js test 11 months ago
groupByLimit.js test 11 months ago
groupBySeries.js test 11 months ago
inject.js test 11 months ago
iterator.js test 11 months ago
log.js test 11 months ago
map.js test 11 months ago
mapLimit.js test 11 months ago
mapSeries.js test 11 months ago
mapValues.js test 11 months ago
mapValuesLimit.js test 11 months ago
mapValuesSeries.js test 11 months ago
memoize.js test 11 months ago
nextTick.js test 11 months ago
omit.js test 11 months ago
omitLimit.js test 11 months ago
omitSeries.js test 11 months ago
package.json test 11 months ago
parallel.js test 11 months ago
parallelLimit.js test 11 months ago
pick.js test 11 months ago
pickLimit.js test 11 months ago
pickSeries.js test 11 months ago
priorityQueue.js test 11 months ago
queue.js test 11 months ago
race.js test 11 months ago
reduce.js test 11 months ago
reduceRight.js test 11 months ago
reflect.js test 11 months ago
reflectAll.js test 11 months ago
reject.js test 11 months ago
rejectLimit.js test 11 months ago
rejectSeries.js test 11 months ago
retry.js test 11 months ago
retryable.js test 11 months ago
safe.js test 11 months ago
select.js test 11 months ago
selectLimit.js test 11 months ago
selectSeries.js test 11 months ago
seq.js test 11 months ago
series.js test 11 months ago
setImmediate.js test 11 months ago
some.js test 11 months ago
someLimit.js test 11 months ago
someSeries.js test 11 months ago
sortBy.js test 11 months ago
sortByLimit.js test 11 months ago
sortBySeries.js test 11 months ago
timeout.js test 11 months ago
times.js test 11 months ago
timesLimit.js test 11 months ago
timesSeries.js test 11 months ago
transform.js test 11 months ago
transformLimit.js test 11 months ago
transformSeries.js test 11 months ago
tryEach.js test 11 months ago
unmemoize.js test 11 months ago
until.js test 11 months ago
waterfall.js test 11 months ago
whilst.js test 11 months ago
wrapSync.js test 11 months ago

README.md

Neo-Async

npm Travis Status Coverage Status download Code Quality: Javascript Total Alerts FOSSA

Neo-Async is thought to be used as a drop-in replacement for Async, it almost fully covers its functionality and runs faster.

Benchmark is here!

Bluebird's benchmark is here!

Code Coverage

coverage

Installation

In a browser

<script src="async.min.js"></script>

In an AMD loader

require(['async'], function(async) {});

Promise and async/await

I recommend to use Aigle.

It is optimized for Promise handling and has almost the same functionality as neo-async.

Node.js

standard

$ npm install neo-async
var async = require('neo-async');

replacement

$ npm install neo-async
$ ln -s ./node_modules/neo-async ./node_modules/async
var async = require('async');

Bower

bower install neo-async

Feature

JSDoc

* not in Async

Collections

Control Flow

Utils

Mode

Benchmark

Benchmark: Async vs Neo-Async

How to check

$ node perf

Environment

  • Darwin 17.3.0 x64
  • Node.js v8.9.4
  • async v2.6.0
  • neo-async v2.5.0
  • benchmark v2.1.4

Result

The value is the ratio (Neo-Async/Async) of the average speed.

Collections

function benchmark
each/forEach 2.43
eachSeries/forEachSeries 1.75
eachLimit/forEachLimit 1.68
eachOf 3.29
eachOfSeries 1.50
eachOfLimit 1.59
map 3.95
mapSeries 1.81
mapLimit 1.27
mapValues 2.73
mapValuesSeries 1.59
mapValuesLimit 1.23
filter 3.00
filterSeries 1.74
filterLimit 1.17
reject 4.59
rejectSeries 2.31
rejectLimit 1.58
detect 4.30
detectSeries 1.86
detectLimit 1.32
reduce 1.82
transform 2.46
sortBy 4.08
some 2.19
someSeries 1.83
someLimit 1.32
every 2.09
everySeries 1.84
everyLimit 1.35
concat 3.79
concatSeries 4.45

Control Flow

funciton benchmark
parallel 2.93
series 1.96
waterfall 1.29
whilst 1.00
doWhilst 1.12
until 1.12
doUntil 1.12
during 1.18
doDuring 2.42
times 4.25
auto 1.97

License

FOSSA Status