# callbag-interval

> A callbag listenable source that sends incremental numbers every x milliseconds

Latest version **1.2.0** (published 2020-11-20) · MIT license · 0 weekly downloads

## Install

```sh
npm install callbag-interval
pnpm add callbag-interval
yarn add callbag-interval
bun add callbag-interval
```

## Health

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

Positive: has types; esm support; no vulnerabilities; high quality score.

Warnings: low downloads.

Negative: abandoned; low maintenance score.

## Facts

| | |
|---|---|
| Version | 1.2.0 |
| Published | 2020-11-20 |
| First published | 2018-01-30 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Unpacked size | 3.8 KB |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 16 |
| Author | staltz.com |
| Maintainers | staltz |
| Keywords | callbag |

## Links

- npm: https://www.npmjs.com/package/callbag-interval
- Repository: https://github.com/staltz/callbag-interval
- Homepage: https://github.com/staltz/callbag-interval#readme
- Issues: https://github.com/staltz/callbag-interval/issues
- npm.io page: https://npm.io/package/callbag-interval

## Dependencies (1)

- [callbag](https://npm.io/package/callbag.md) ^1.1.0

## Recent versions

- 1.2.0 (latest) — 2020-11-20
- 1.1.0 — 2018-07-23
- 1.0.0 — 2018-01-30

## README

# callbag-interval

A callbag listenable source that sends incremental numbers every x milliseconds.

`npm install callbag-interval`

## example

```js
const interval = require('callbag-interval');
const observe = require('callbag-observe');

const source = interval(1000);

observe(x => console.log(x))(source); // 0
                                      // 1
                                      // 2
                                      // 3
                                      // ...
```

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