login/node_modules/asyncc
2024-01-17 15:17:40 +08:00
..
dist release test fix 403 2024-01-17 15:17:40 +08:00
lib release test fix 403 2024-01-17 15:17:40 +08:00
src release test fix 403 2024-01-17 15:17:40 +08:00
bower.json release test fix 403 2024-01-17 15:17:40 +08:00
CHANGELOG.md release test fix 403 2024-01-17 15:17:40 +08:00
LICENSE.txt release test fix 403 2024-01-17 15:17:40 +08:00
package.json release test fix 403 2024-01-17 15:17:40 +08:00
README.md release test fix 403 2024-01-17 15:17:40 +08:00

asyncc

Just async patterns

NPM version Build Status

Asynchronous patterns, no dependencies, no bloat, more isn't needed.

Runs in the browser and on node. Less than 6kB in size.

Serial execution patterns

Parallel execution patterns

Installation

npm install --save asyncc

Usage

As ES6 Modules

import {NoPromise, connect} from 'asyncc'

As CommonJS Modules

const {NoPromise, connect} = require('asyncc')

or picking individual methods

const connect = require('asyncc/lib/connect')

References