# traverse-chain

> A simple asynchronous tool

Latest version **0.1.0** (published 2013-05-18) · MIT license · 0 weekly downloads

## Install

```sh
npm install traverse-chain
pnpm add traverse-chain
yarn add traverse-chain
bun add traverse-chain
```

## Health

**Score 15/100 (F)** — status: abandoned.

Positive: no vulnerabilities.

Warnings: low downloads; no types; no esm support; pre 1.0.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 0.1.0 |
| Published | 2013-05-18 |
| First published | 2013-05-18 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | yuanchuan |
| Maintainers | yuanchuan |
| Keywords | async, chain, queue |

## Links

- npm: https://www.npmjs.com/package/traverse-chain
- Repository: https://github.com/yuanchuan/traverse-chain
- npm.io page: https://npm.io/package/traverse-chain

## Alternatives

- [cron](https://npm.io/package/cron.md) — 4.9M weekly downloads
- [@vercel/queue](https://npm.io/package/@vercel/queue.md) — 731.6K weekly downloads
- [create-sonicjs](https://npm.io/package/create-sonicjs.md) — 1.6K weekly downloads
- [@exellix/jobs-api](https://npm.io/package/@exellix/jobs-api.md) — 941 weekly downloads
- [@forwardimpact/libskill](https://npm.io/package/@forwardimpact/libskill.md) — 575 weekly downloads

## Recent versions

- 0.1.0 (latest) — 2013-05-18

## README

# traverse-chain

A simple asynchronous tool 

## Installation

```bash
$ npm install traverse-chain
```

## Example

```javascript

var Chain = require('traverse-chain');
var chain = new Chain();

chain.add(
  function() {
    setTimeout(function() {
      chain.next();
    }, 2000);
  },
  functin() {
    setTimeout(function() {
      chain.next();
    }, 1000); 
  }
)

chain.traverse(function() {
  // done
});
```

## License
MIT

---
_Source: https://npm.io/package/traverse-chain · Machine-readable twin of the npm.io package page. Health data is recomputed on every publish._
