You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

react-howler

Package Overview
Dependencies
Maintainers
2
Versions
34
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

react-howler

A React.js wrapper for howler.js (audio player)

3.3.0
Source
npmnpm
Version published
Weekly downloads
6.1K
2.93%
Maintainers
2
Weekly downloads
 
Created
Source

react-howler

A React.js wrapper for howler.js (audio player).

ReactHowler has no UI. You has to provide your own UI

Props can be passed to control playback and react to events such as end, load, play, ...

Travis status LICENSE MIT js-standard-style npm dependencies

howler.js

howler.js is an audio library for the modern web. It defaults to Web Audio API and falls back to HTML5 Audio.

Usage

npm install --save react-howler

import React, { Component } from 'react'
import ReactHowler from 'react-howler'

class App extends Component {
  // This sound file may not work due to cross-origin setting
  render () {
    return (
      <ReactHowler
        src='http://goldfirestudios.com/proj/howlerjs/sound.ogg'
        playing={true}
      />
    )
  }
}

For a full working example please see it in App.js

Demo

http://khoanguyen.me/react-howler/ or

git clone http://github.com/thangngoc89/react-howler
npm install
npm run example:react
open http://localhost:3000

Props

PropDefaultDescription
srcThe src of songs for playing. Can be a string or an array
playingtrueSet to true or false to pause or play the media.
Setting to true on initial load will play the audio immediately after it is loaded
loopfalseSet to true or false to enable/disable loop
mutefalseSet to true or false to mute/unmute current audio
volume1.0The volume of the specific howl, from 0.0 to 1.0
onPlaynoopCalled when audio starts or resumes playing
onPausenoopCalled when audio is paused
onVolumenoopCalled when volume is changed
onStopnoopCalled when audio is stopped
onLoadnoopCalled when audio is loaded (buffered)
onLoadErrornoopCalled when an error occurs whilst attempting to load media
onEndnoopCalled when media finishes playing

Methods

duration([id])

Get the duration of the audio source. Will return 0 until after the load event fires.

  • id: Number optional The sound ID to check. Passing an ID will return the duration of the sprite being played on this instance; otherwise, the full source duration is returned.

seek([seek])

Get/set the position of playback for a sound.

  • seek: Number optional The position to move current playback to (in seconds).

stop([id])

Stops playback of sound, resetting seek to 0.

  • id: Number optional The sound ID. If none is passed, all sounds in group are stopped.

Other howler.js methods

If you need to use other howler.js methods that are not included in this wrapper you can access the howler instance directly via howler

import React, { Component } from 'react'
import ReactHowler from 'react-howler'

class App extends Component {
  getHower () {
    this.audio.howler
  }

  getDuration () {
    this.audio.duration()
  }

  getSeek () {
    this.audio.seek()
  }

  setSeek () {
    this.audio.seek(0.5)
  }
  // This sound file may not work due to cross-origin setting
  render () {
    return(
      <ReactHowler
        src='http://goldfirestudios.com/proj/howlerjs/sound.ogg'
        playing={true}
        ref={(ref) => this.audio = ref}
      />
    );
  }
}

Howler global core methods

Howler global methods are avaiable in window scope. Please refer to howler's documentation

Usage:

window.Howler.mute(true) // Mute all sounds

Linting

This project uses standard code style.

js-standard-style

npm run lint

Audio file in examples

Taken from howler.js demo page

Sound file direct link: sound.ogg

License

MIT

Keywords

react-component

FAQs

Package last updated on 27 Nov 2016

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts