# soundbank-multi

> Repeat template descriptor for every item in input array, replacing placeholder with current item.

Latest version **0.0.2** (published 2014-10-15) · ISC license · 0 weekly downloads

## Install

```sh
npm install soundbank-multi
pnpm add soundbank-multi
yarn add soundbank-multi
bun add soundbank-multi
```

## 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.2 |
| Published | 2014-10-15 |
| First published | 2014-03-03 |
| Weekly downloads | 0 |
| License | ISC |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 2 |
| Author | Matt McKegg |
| Maintainers | mmckegg |
| Keywords | waapi, soundbank, provider, repeat, chord, split |

## Links

- npm: https://www.npmjs.com/package/soundbank-multi
- Repository: https://github.com/mmckegg/soundbank-multi
- Issues: https://github.com/mmckegg/soundbank-multi/issues
- npm.io page: https://npm.io/package/soundbank-multi

## Alternatives

- [@sindresorhus/slugify](https://npm.io/package/@sindresorhus/slugify.md) — 3.7M weekly downloads
- [solid-js](https://npm.io/package/solid-js.md) — 2.7M weekly downloads
- [expo-glass-effect](https://npm.io/package/expo-glass-effect.md) — 2.5M weekly downloads
- [nanoassert](https://npm.io/package/nanoassert.md) — 780.8K weekly downloads
- [@ffmpeg/ffmpeg](https://npm.io/package/@ffmpeg/ffmpeg.md) — 529.5K weekly downloads

## Recent versions

- 0.0.2 (latest) — 2014-10-15
- 0.0.1 — 2014-03-03

## README

soundbank-multi
===

Repeat template descriptor for every item in input array, replacing placeholder with current item.

Use as a value provider in [soundbank](https://github.com/mmckegg/soundbank).

## Install

```bash
$ npm install soundbank-multi
```

## Example

Create a chord slot:

```js
var Soundbank = require('soundbank')
var audioContext = new AudioContext()

audioContext.providers = {
  multi: require('soundbank-multi')
}

audioContext.sources = {
  oscillator: require('soundbank-oscillator')
}

var soundbank = Soundbank(audioContext)
soundbank.connect(audioContext.destination)

soundbank.update({
  id: 'note0',
  offset: 0,
  sources: {
    values: [60, 65, 68],
    template: {
      { node: 'oscillator',
        shape: 'square',
        note: {$value: true} // value is injected here
      }
    }
  }
})
```

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