react-fm
v0.0.3
Published
A frequency meter for React.js based on Web Audio Api
Maintainers
Readme
React Frequency Meter

React Frequency Meter allows you to visualize frequencies in audio using Web Audio Api.
Usage
Install via npm:
$ npm install --save react-routerThen with a module bundler like webpack that supports either CommonJS or ES2015 modules, use as you would anything else:
// using an ES6 transpiler, like babel
import FrequencyMeter from 'react-fm';
// not using an ES6 transpiler
var FrequencyMeter = require('react-fm')
...
<FrequencyMeter
audioContext={audioContext}
audioSource={audioSource}
/>
You also need to include lib/index.css for styles.
Read Web Audio Api Docs to know about AudioContext and AudioSource.
Examples
- Start the development server with
npm start - Point your browser to http://localhost:8080
See examples folder for complete examples.
