# @most/multicast

> Efficient stream sharing for most.js

Latest version **1.3.0** (published 2017-09-28) · MIT license · 0 weekly downloads

## Install

```sh
npm install @most/multicast
pnpm add @most/multicast
yarn add @most/multicast
bun add @most/multicast
```

## 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.3.0 |
| Published | 2017-09-28 |
| First published | 2016-02-29 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | bundled |
| Module format | ESM + CommonJS |
| Dependencies | 1 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 21 |
| Author | Tylor Steinberer |
| Maintainers | davidchase, tylors, briancavalier, most |
| Keywords | most, mostjs, reactive, event, async, streams, multicast |

## Links

- npm: https://www.npmjs.com/package/@most/multicast
- Repository: https://github.com/mostjs/multicast
- Homepage: https://github.com/mostjs/multicast#readme
- Issues: https://github.com/mostjs/multicast/issues
- npm.io page: https://npm.io/package/@most/multicast

## Dependencies (1)

- [@most/prelude](https://npm.io/package/@most/prelude.md) ^1.4.0

## Alternatives

- [async-exit-hook](https://npm.io/package/async-exit-hook.md) — 3.7M weekly downloads
- [evnty](https://npm.io/package/evnty.md) — 7.2K weekly downloads
- [eleventy-plugin-asciidoc](https://npm.io/package/eleventy-plugin-asciidoc.md) — 3.5K weekly downloads
- [@jswork/next-get2get](https://npm.io/package/@jswork/next-get2get.md) — 945 weekly downloads
- [@dashersw/axon](https://npm.io/package/@dashersw/axon.md) — 934 weekly downloads

## Recent versions

- 1.3.0 (latest) — 2017-09-28
- 1.2.5 — 2016-12-12
- 1.2.4 — 2016-08-31
- 1.2.3 — 2016-08-26
- 1.2.2 — 2016-08-18
- 1.2.1 — 2016-07-15
- 1.2.0 — 2016-07-05
- 1.1.4 — 2016-05-14
- 1.1.3 — 2016-05-09
- 1.1.2 — 2016-05-08
- 1.1.1 — 2016-05-02
- 1.1.0 — 2016-04-29
- 1.0.4 — 2016-04-13
- 1.0.3 — 2016-03-17
- 1.0.2 — 2016-03-13
- … 2 more at https://npm.io/package/@most/multicast/versions

## README

# ⚠️ Deprecated ⚠️
 
`@most/multicast` is deprecated.

Support and maintenance will cease when `@most/core` 1.0 is released. Meanwhile, only critical bug fixes will be released. 

Its functionality is currently available in [@most/core](http://mostcore.readthedocs.io/en/latest/api.html#multicast) and will also be available in most 2.0.

# @most/multicast

Efficient source sharing of an underlying stream to multiple observers.

## API

### multicast :: Stream a &rarr; Stream a
Returns a stream equivalent to the original, but which can be shared more efficiently among multiple consumers.

```
stream:             -a-b-c-d->
multicast(stream):  -a-b-c-d->
```

Using multicast allows you to build up a stream of maps, filters, and other transformations, and then share it efficiently with multiple observers.

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