# seqFlow

> ``` const seqFlow = require('seqFlow'); //define N functions const fn1 = (data, next) => { console.log('fn1') data++ next(null, data) }

Latest version **0.0.1** (published 2016-06-28) · ISC license · 0 weekly downloads

## Install

```sh
npm install seqFlow
pnpm add seqFlow
yarn add seqFlow
bun add seqFlow
```

## 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.0.1 |
| Published | 2016-06-28 |
| First published | 2016-06-28 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| Maintainers | allancarvalho |

## Links

- npm: https://www.npmjs.com/package/seqFlow
- npm.io page: https://npm.io/package/seqFlow

## Recent versions

- 0.0.1 (latest) — 2016-06-28
- 1.0.0 — 2016-06-28

## README

# seqflow 
## Usage 
```
const seqFlow = require('seqFlow');
//define N functions
const fn1 = (data, next) => {
    console.log('fn1')
    data++
    next(null, data)
}

const fn2 = (data, next) => {
    console.log('fn2')
    data++;
    next(null, data);
}
const fn3 = (data, next) => {
    console.log('fn3')
    data++;
    next(null, data);
}

seqFlow([fn1, fn2, fn3], 0, (err, data) => {
    if(err) {
        console.error('error');
    }
    console.log('end without error', data);
});

```

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