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

umbr-binman

v1.0.15

Published

A utility to download, verify, and extract external binaries from configuration files.

Readme

umbr-binman

A cross-platform utility to download, verify, and extract external binaries into a central bin folder using a YAML configuration file. This package wraps the binman CLI for seamless integration in Node.js projects.


Installation

Install as a dev dependency:

npm install umbr-binman --save-dev

Usage

After installation, you can run the CLI using:

npx binman <path-to-config> [flags]

Example:

npx binman .

CLI Flags

  • --platforms=linux,windows — comma-separated list of platforms to fetch
  • --architectures=x86_64 — comma-separated architectures to fetch
  • --no-clean — skip cleaning the bin and downloads folders before fetching

Example

npx binman . --platforms=linux,windows --architectures=x64

Output:

[2025-11-23 16:58:05] Resolved path: /project/cli
[2025-11-23 16:58:05] Found config file: /project/cli/binman.yml
[2025-11-23 16:58:05] Target platforms: linux, windows
[2025-11-23 16:58:05] Target architectures: x86_64
[2025-11-23 16:58:05] YAML file parsed successfully
[2025-11-23 16:58:05] Removed /project/cli/bin
[2025-11-23 16:58:05] Removed /project/cli/downloads
[2025-11-23 16:58:05] Fetching https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-pc-windows-gnu.zip
[2025-11-23 16:58:06] SHA256 verified
[2025-11-23 16:58:06] Fetching https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz
[2025-11-23 16:58:06] SHA256 verified

Folder Conventions

Downloads folder

downloads/<package-name>/<platform>/<architecture>/<source-file>

Bin folder

bin/<package-name>/<platform>/<architecture>/<binary>

Example:

bin/ripgrep/
├─ linux/
│  └─ x86_64/
└─ windows/
   └─ x86_64/

Example binman.yml

Valid platforms are windows, linux, or darwin for now.

Valid architecture keys are those found in Node's process.arch. Only valid keys are permitted — alias names such as x86_64 are not allowed. For example, use x64 instead of the alias.

binaries:
  - name: ripgrep
    urls:
      linux:
        x64: https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-unknown-linux-musl.tar.gz
      windows:
        x64: https://github.com/BurntSushi/ripgrep/releases/download/15.1.0/ripgrep-15.1.0-x86_64-pc-windows-gnu.zip

    sha256:
      linux:
        x64: 1c9297be4a084eea7ecaedf93eb03d058d6faae29bbc57ecdaf5063921491599
      windows:
        x64: 0bf217086ecb1392070020810b888bd405cb1dd5f088c16c45d9de1e5ea6b638

    patterns:
      linux:
        x64: "^rg$"
      windows:
        x64: "^rg\\.exe$"

Binman Resolve

Binman resolve will try to resolve the binary path to a specific binary you defined above in the config using the package name key, the possible executable names, and the path to the bin directory.

import { binmanResolve } from "umbr-binman";

let exePath = await binmanResolve("ripgrep", ["rg"], "path/to/bin");