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

reverse-audio-buffer

v1.0.0

Published

Reverse PCM audio and encode it to a 16-bit WAV. Zero dependencies, works in the browser and Node.

Readme

reverse-audio-buffer

Reverse PCM audio and encode it to a 16-bit WAV. Zero dependencies. Works in the browser and in Node.

Built for and powering the free tool at reverseaudiotool.com — reverse any audio in your browser, no upload, no signup.

Install

npm install reverse-audio-buffer

Use in the browser (decode a File → reversed WAV)

import { reverseAudioFile } from "reverse-audio-buffer/browser";

const file = document.querySelector("input[type=file]").files[0];
const wavBlob = await reverseAudioFile(file);

// download it
const url = URL.createObjectURL(wavBlob);
const a = document.createElement("a");
a.href = url;
a.download = "reversed.wav";
a.click();

Everything runs on the client — the audio never leaves the device. This is the same approach used by the live tool at reverseaudiotool.com.

Use with raw sample data (browser or Node)

import { reverseChannels, encodeWAV, reverseToWav } from "reverse-audio-buffer";

// channels: one Float32Array per channel, samples in [-1, 1]
const wav = reverseToWav(channels, 44100); // -> ArrayBuffer (a full WAV file)

// or compose the steps yourself:
const reversed = reverseChannels(channels);
const wavBuffer = encodeWAV(reversed, 44100);

In Node you can write it straight to disk:

import { writeFileSync } from "node:fs";
writeFileSync("reversed.wav", Buffer.from(reverseToWav(channels, sampleRate)));

API

| Function | Description | | --- | --- | | reverseChannels(channels) | Returns new reversed Float32Array[] (inputs untouched). | | encodeWAV(channels, sampleRate = 44100) | Encodes channel data to a 16-bit WAV ArrayBuffer. | | reverseToWav(channels, sampleRate = 44100) | Reverse + encode in one call. | | reverseAudioFile(fileOrArrayBuffer) (from /browser) | Decode with Web Audio, reverse, return a audio/wav Blob. |

Why

Reversing audio is a one-liner in concept but fiddly in practice (channel handling, clamping, WAV headers). This packages the boring parts so you can drop a reverse-cymbal, backwards-vocal, or transition effect into any project. Try it live first at reverseaudiotool.com.

License

MIT