# waaoffsetnode

> An audio offset node for web audio API

Latest version **0.1.3** (published 2016-04-25) · MIT license · 0 weekly downloads

## Install

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

## 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.1.3 |
| Published | 2016-04-25 |
| First published | 2015-03-24 |
| Weekly downloads | 0 |
| License | MIT |
| TypeScript types | none |
| Module format | CommonJS |
| Dependencies | 0 |
| Known vulnerabilities | 0 |
| Install scripts | no |
| GitHub stars | 3 |
| Author | Sébastien Piquemal |
| Maintainers | sebpiq |
| Keywords | audio, web audio, Web Audio API, waa |

## Links

- npm: https://www.npmjs.com/package/waaoffsetnode
- Repository: https://github.com/sebpiq/WAAOffsetNode
- Issues: https://github.com/sebpiq/WAAOffsetNode/issues
- npm.io page: https://npm.io/package/waaoffsetnode

## Recent versions

- 0.1.3 (latest) — 2016-04-25
- 0.1.2 — 2015-03-30
- 0.1.1 — 2015-03-24

## README

WAAOffsetNode
===========

A simple offset node (or constant value) for Web Audio API.


Installation
-------------

You can grab the latest browser build from [dist/](https://github.com/sebpiq/WAAOffsetNode/blob/master/dist/WAAOffsetNode-latest.js) or install through npm with `npm install waaoffset` 


Usage
-------

Create :

```javascript
var context = new AudioContext()
  , offsetNode = new WAAOffsetNode(context)
```

Connect :

```javascript
// `WAAOffsetNode.connect` takes the same arguments as `AudioNode.connect`
offsetNode.connect(someOtherNode)
```

Control :

```javascript
// `WAAOffsetNode.offset` is an `AudioParam`
offsetNode.offset.setValueAtTime(0.5, 10)
```


Build
-------

`npm run build`


Run the tests
---------------

Run `npm build.tests`. It will create a `waatest` folder in the root of the package. Then open `waatest/index.html` in a web browser.

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