npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

avio

v0.0.15

Published

audio video input output

Downloads

20

Readme

avio

avio is a library for making interactive audio/visual systems in the browser

Usage

The recommended way is using ECMAScript modules (esm):

<script type='module'>
  import { input, output } from 'https://unpkg.com/[email protected]?module'
</script>

Input

The input object has collections of signals and signals generators.

Mouse

The mouse collection has the following signals:

  • x: X coordinate relative to the window viewport. The values are decimal numbers between 0 and 1.
  • y: Y coordinate relative to the window viewport. The values are decimal numbers between 0 and 1.
  • down: Whether or not the mouse is pressed down. 1 when mouse is pressed down, 0 when not.
  • up: Whether or not the mouse is pressed down. 0 when mouse is pressed down, 1 when not.
input.mouse.x.print() // 0.01, 0.02, 0.03 ...
input.mouse.y.print() // 0.005, 0.008, 0.01 ...
input.mouse.down.print() // 0, 0, 1 ...
input.mouse.up.print() // 1, 1, 0 ...

Time

The time collection has the following signals:

  • frame: Starts at 0 and increments by 1 around 60 times every second.
  • interval(ms): Starts at 0 and increments by 1 at the time interval of milliseconds specified.
input.time.frame.print() // 0, 1, 2, 3, 4 ... (updates 60 times every second)
input.time.interval(1000).print() // 0, 1, 2, 3, 4 ... (updates one time every second)
input.time.interval(500).print() // 0, 1, 2, 3, 4 ... (updates two times every second)

Output

Audio

Oscillator

...

Visual

...

Signals

avio uses a high-level concept of signals. A signal in avio is an object whose value changes over time, similar to voltage in a wire. It has methods for transformation, inspection and connection. All methods return a signal which means that they can be chained.

Inspection

A signal can be inspected by using the print method. It will print all values continuously in the developer tools console of the browser. In example:

signal.print()

Transformations

Math

Basic arithmetic (add, subtract, multiply, divide) and all built-in JavaScript Math methods can be used. In example:

signal.multiply(0.5).subtract(1).sin().pow(2)

Signal generators

...