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

react-volume

v1.0.4

Published

A volume meter React component

Downloads

12

Readme

react-volume-meter

A volume meter react component

Installation

npm install react-volume-meter

Example

See a working example here.

This example uses this component as well as the react-recorder component. It uses redux to manage state with the react-recorder-redux package. Check out the full source code for the example here.

Overview

This component animates a volume meter through an HTML5 canvas element. It takes a Web Audio node as input, creates an AnalyserNode, and computes the volume, which it then displays through the canvas element.

Props

audioContext

An instance of either window.audioContext or window.webkitAudioContext, depending on your browser. If you use the Web Audio API elsewhere on the page, be sure to pass the instance of AudioContext to this component, since you should generally only have one instantiation per page.

src

Optional, although the animation won't start properly without it. A Web Audio Node object that implements the connect method. For example, you can call audioContext.createMediaStreamSource(stream) to create a node from the stream object returned by a navigator.getUserMedia recording.

width

The width of the canvas in pixels. The canvas adjusts its animation automatically but is designed to look best when its width:height ratio is 3:2.

height

The height of the canvas in pixels. The canvas adjusts its animation automatically but is designed to look best when its width:height ratio is 3:2.

maxVolume

Optional. The maximum volume level for the volume meter. Its theoretical maximum is 255 but chances are you'll never get that high in normal use. When the volume exceeds the maxVolume level, the final bar of the meter turns red. Defaults to 50, which seems to work well for microphone recordings of normal human speech.

style

Optional. Style of the canvas element.

command

Optional. Permitted values are 'start', 'stop', and 'none'. Useful for passing directives to the component in a redux-like system where state is communicated through props. When the value for the command prop is changed, the component calls the corresponding method (except in the default case of 'none'). Users can also call these methods directly by accessing the component's ref.