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

revelo-wasm

v0.5.5

Published

WebAssembly bindings for revelo — parse media metadata in the browser

Downloads

893

Readme

revelo-wasm

WebAssembly bindings for revelo — parse media metadata in the browser with no server round-trip.

Pass a file buffer from JavaScript, get MediaInfo-style JSON back. Pure Rust under the hood; no native dependencies at runtime.

Install

npm install revelo-wasm

Quick start

import init, { parse, version } from "revelo-wasm";

await init();

console.log(version()); // e.g. "0.5.1"

const input = document.querySelector('input[type="file"]');
input.addEventListener("change", async (event) => {
  const file = event.target.files[0];
  const buf = await file.arrayBuffer();
  const json = parse(new Uint8Array(buf));

  if (json === null) {
    console.log("format not recognized");
    return;
  }

  console.log(JSON.parse(json));
});

API

| Export | Description | | --- | --- | | init() | Load the WASM module. Call once before parse. | | parse(data: Uint8Array) | Parse a media file buffer. Returns a JSON string, or null if the format is not recognized. | | version() | Return the package version string. |

Output shape

parse returns JSON matching revelo's MediaInfo-style export: an array of stream objects, each with a kind (General, Video, Audio, Text, Image, EXIF) and a fields array of { name, value } pairs.

[
  {
    "kind": "General",
    "fields": [
      { "name": "Format", "value": "MPEG-4" },
      { "name": "Duration", "value": "1 min 30 s" }
    ]
  },
  {
    "kind": "Video",
    "fields": [
      { "name": "Format", "value": "AVC" },
      { "name": "Width", "value": "1920 pixels" }
    ]
  }
]

Bundlers

The package is ESM ("type": "module"). With Vite, webpack, or Rollup, import as shown above. The WASM binary ships inside the package; init() resolves it automatically.

If your bundler strips side-effect imports, keep the default import:

import init from "revelo-wasm";
await init();

Building from source

Requires wasm-pack and the wasm32-unknown-unknown target:

rustup target add wasm32-unknown-unknown
wasm-pack build crates/revelo-wasm --release

The build output lands in crates/revelo-wasm/pkg/.

Related

License

BSD-2-Clause. See LICENSE.