# seqmap

> Sequential map

Latest version **0.4.1** (published 2017-05-30) · MIT license · 0 weekly downloads

## Install

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

## 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.4.1 |
| Published | 2017-05-30 |
| First published | 2017-05-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 0 |
| Author | Fredy M |
| Maintainers | saiberz |
| Keywords | sequential, map, array, async |

## Links

- npm: https://www.npmjs.com/package/seqmap
- Repository: https://github.com/saiberz/seqmap
- Homepage: https://github.com/saiberz/seqmap#readme
- Issues: https://github.com/saiberz/seqmap/issues
- npm.io page: https://npm.io/package/seqmap

## Alternatives

- [@commercetools/sync-actions](https://npm.io/package/@commercetools/sync-actions.md) — 25.1K weekly downloads
- [cwait](https://npm.io/package/cwait.md) — 21.4K weekly downloads
- [@ledgerhq/hw-app-cosmos](https://npm.io/package/@ledgerhq/hw-app-cosmos.md) — 4.2K weekly downloads
- [@financial-times/o-loading](https://npm.io/package/@financial-times/o-loading.md) — 2.8K weekly downloads
- [fa](https://npm.io/package/fa.md) — 185 weekly downloads

## Recent versions

- 0.4.1 (latest) — 2017-05-30
- 0.4.0 — 2017-05-30
- 0.3.0 — 2017-05-30
- 0.2.0 — 2017-05-30
- 0.1.0 — 2017-05-29

## README

# seqmap
Sequential map

# Install

```
npm i -S seqmap
```

# Usage
```js

const seqmap = require('seqmap')

function asyncfn(seconds, index){
  return new Promise((resolve, reject) => {
    setTimeout(() => {
      resolve(index + ': Resolved after ' + seconds + 'seconds')
    }, seconds*1000)
  })
}

function logger(val){
  console.log(val)
}


seqmap([3,2], asyncfn, logger, () => { console.log('All promises resolved seqly') })
```

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