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 🙏

© 2026 – Pkg Stats / Ryan Hefner

@rozie-ui/wavesurfer-react

v0.1.4

Published

Idiomatic React audio waveform player wrapping wavesurfer.js — one Rozie source compiled to React.

Readme

@rozie-ui/wavesurfer-react

Idiomatic react Waveform — a cross-framework audio waveform player compiled from one Rozie source wrapping wavesurfer.js (v7). The playback position is two-way bound via currentTime (seconds). This package is generated; do not edit src/ by hand.

Install

npm i @rozie-ui/wavesurfer-react

Peer dependencies: the wavesurfer.js engine (^7) + react + react-dom. Install them alongside this package. wavesurfer renders a canvas — no external CSS import is required.

Also installed: @rozie/runtime-react — Rozie's small, tree-shaken runtime helper package (controllable state, keyboard navigation, event modifiers, and safe interpolation). It arrives as a regular dependency, so npm pulls it for you. Your bundler keeps only the helpers this component actually uses — typically a few hundred bytes to a few KB, minified and gzipped. What's in it and what it costs.

Usage

import { useState } from 'react';
import { Waveform } from '@rozie-ui/wavesurfer-react';

export function Demo() {
  const [time, setTime] = useState(0);
  return (
    <Waveform
      src="/audio.mp3"
      currentTime={time}
      onCurrentTimeChange={setTime}
      timeline
      hover
      onReady={(d) => console.log('duration', d)}
    />
  );
}

Props

| Name | Type | Default | Two-way (model) | Required | | --- | --- | --- | :---: | :---: | | src | String | null | | | | peaks | unknown | undefined | | | | duration | Number | null | | | | height | Number | 128 | | | | waveColor | String | "#8a2be2" | | | | progressColor | String | "#5a189a" | | | | cursorColor | String | "#333333" | | | | cursorWidth | Number | 1 | | | | barWidth | unknown | null | | | | barGap | unknown | null | | | | barRadius | unknown | null | | | | minPxPerSec | Number | 1 | | | | volume | Number | 1 | | | | playbackRate | Number | 1 | | | | autoplay | Boolean | false | | | | normalizeAmplitude | Boolean | false | | | | hideScrollbar | Boolean | false | | | | disableInteraction | Boolean | false | | | | disableDragToSeek | Boolean | false | | | | timeline | Boolean | false | | | | hover | Boolean | false | | | | hoverColor | String | null | | | | regions | unknown | undefined | ✓ | | | dragToCreateRegions | Boolean | false | | | | regionColor | String | null | | | | options | Object | {} | | | | currentTime | unknown | undefined | ✓ | |

Events

| Event | Description | | --- | --- | | regionCreated | | | regionUpdated | | | regionRemoved | | | regionClicked | | | regionIn | | | regionOut | | | ready | | | playing | | | paused | | | finished | | | timeupdate | | | seeking | | | interaction | | | loading | | | error | |

Imperative handle

Beyond props, the component exposes imperative methods (declared once in the Rozie source via $expose). Grab a handle with the native ref mechanism and call them directly:

import { useRef } from 'react';
import { Waveform, type WaveformHandle } from '@rozie-ui/wavesurfer-react';

const wave = useRef<WaveformHandle>(null);
// <Waveform ref={wave} ... />
wave.current?.playPause();
const dur = wave.current?.getDuration();

| Method | Description | | --- | --- | | play | Start playback. | | pause | Pause playback. | | playPause | Toggle between play and pause. | | stop | Stop playback and return the cursor to the start. | | seekTo | Seek to a relative position — seekTo(progress) where progress is 01. | | setTime | Seek to an absolute position in seconds — setTime(seconds). | | setVolume | Set the playback volume — setVolume(v) where v is 01. | | setPlaybackRate | Set the playback speed multiplier — setPlaybackRate(rate). | | setZoom | Set the zoom level in pixels-per-second — setZoom(pxPerSec). | | load | Load a new audio source URL — load(url). | | isPlaying | Return whether audio is currently playing (boolean). | | getDuration | Return the total duration in seconds (0 before the audio is ready). | | getCurrentTime | Return the current playback position in seconds. | | getWaveSurfer | Return the underlying wavesurfer instance for direct API access (the engine escape hatch). Null before mount. | | addRegion | Add a region imperatively — addRegion({ start, end?, id?, content?, color?, drag?, resize? }). Returns the created engine Region. Requires the regions array to have registered the plugin. Null when regions are disabled. | | clearRegions | Remove all regions. | | getRegions | Return the live engine Region objects (empty array when regions are disabled). |