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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@aevum/react-recorder

v0.1.14

Published

A React hook for recording audio using the browser's MediaRecorder API.

Readme

react-recorder

A React hook for recording audio using the browser's MediaRecorder API.

Installation

npm install @aevum/react-recorder

Usage

import React from 'react';
import { useRecorder } from '@aevum/react-recorder';

function AudioRecorder() {
  const {
    isRecording,
    isPaused,
    hasPermission,
    startRecording,
    stopRecording,
    pauseRecording,
    resumeRecording,
    recordedBlob,
    error,
    requestPermission,
  } = useRecorder({
    onStart: () => console.log('Recording started'),
    onStop: (blob) => console.log('Recording stopped', blob),
    onError: (err) => console.error('Recording error', err),
    onData: (data) => console.log('Data available', data),
  });

  const handleDownload = () => {
    if (recordedBlob) {
      const url = URL.createObjectURL(recordedBlob);
      const a = document.createElement('a');
      a.href = url;
      a.download = 'recording.webm';
      document.body.appendChild(a);
      a.click();
      document.body.removeChild(a);
      URL.revokeObjectURL(url);
    }
  };

  return (
    <div>
      {!hasPermission && (
        <button onClick={requestPermission}>Request Microphone Permission</button>
      )}
      {hasPermission && (
        <>
          <button onClick={startRecording} disabled={isRecording}>
            Start Recording
          </button>
          <button onClick={stopRecording} disabled={!isRecording}>
            Stop Recording
          </button>
          <button onClick={pauseRecording} disabled={!isRecording || isPaused}>
            Pause Recording
          </button>
          <button onClick={resumeRecording} disabled={!isRecording || !isPaused}>
            Resume Recording
          </button>
          {recordedBlob && (
            <button onClick={handleDownload}>Download Recording</button>
          )}
          {error && <p>Error: {error.message}</p>}
        </>
      )}
    </div>
  );
}

export default AudioRecorder;

API

useRecorder(options)

A React hook that provides functionality for recording audio.

Options

  • mimeType: string (optional) - The MIME type for the recorded audio. Defaults to audio/webm.
  • audioBitsPerSecond: number (optional) - The audio bitrate in bits per second. Defaults to 128000.
  • onStart: () => void (optional) - Callback function called when recording starts.
  • onStop: (blob: Blob) => void (optional) - Callback function called when recording stops, with the recorded audio blob as an argument.
  • onError: (error: Error) => void (optional) - Callback function called when an error occurs during recording.
  • onData: (data: Blob) => void (optional) - Callback function called when data is available during recording.

Returns

  • isRecording: boolean - Indicates if the recording is currently active.
  • isPaused: boolean - Indicates if the recording is currently paused.
  • hasPermission: boolean - Indicates if the microphone permission has been granted.
  • startRecording: () => Promise<void> - Function to start recording.
  • stopRecording: () => Promise<void> - Function to stop recording.
  • pauseRecording: () => void - Function to pause recording.
  • resumeRecording: () => void - Function to resume recording.
  • recordedBlob: Blob | null - The recorded audio blob, or null if no recording has been made.
  • error: Error | null - An error object if an error occurred during recording, or null otherwise.
  • requestPermission: () => Promise<void> - Function to request microphone permission.

License

MIT