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

@itrocks/install-binaries

v0.0.2

Published

Downloads, verifies and installs external binaries declared in your package.json

Readme

npm version npm downloads GitHub issues discord

install-binaries

Downloads, verifies and installs external binaries declared in your package.json.

This command-line tool keeps platform utilities and other external executables out of your npm package while making their installation reproducible.

Requirements

  • Node.js 18 or later.
  • A project containing a binaries section in its package.json.

Installation

npm i @itrocks/install-binaries

Run the command with npx:

npx install-binaries

You can also declare it as a project script. npm automatically adds node_modules/.bin to the command path, so npx is not needed there:

{
  "scripts": {
    "postinstall": "install-binaries"
  }
}

Configuration

Declare each binary in the binaries section of your project's package.json:

{
  "binaries": {
    "MultiMonitorTool": {
      "destination": "vendor/windows/MultiMonitorTool",
      "sha256": {
        "MultiMonitorTool.exe": "99b472f85fd905d7ffea461f80362ca1ddfbb13b958f21b14d8c94b542d938da"
      },
      "url": "https://www.nirsoft.net/utils/multimonitortool-x64.zip"
    }
  }
}

Each entry has three properties:

  • url: file to download.
  • destination: installation directory, relative to the project directory.
  • sha256: checksum of the download or checksums of selected extracted files.

SHA-256 verification

Use a string when the checksum applies to the downloaded file itself:

{
  "sha256": "0123456789abcdef..."
}

The download is verified before extraction and kept in a .downloads directory under the destination. It can then be reused by later executions.

Use an object when checksums apply to files after extraction:

{
  "sha256": {
    "tool.exe": "0123456789abcdef...",
    "helper.exe": "fedcba9876543210..."
  }
}

Only the listed extracted files are verified. The downloaded archive is temporary and .downloads is not kept.

Checksums may optionally start with sha256: and are compared without regard to case or whitespace.

Supported downloads

The file type is detected from the URL filename:

  • .zip
  • .tgz and .tar.gz
  • .gz
  • uncompressed files

When an archive contains a single wrapping directory, it is automatically removed from the installation path. Other files from the archive are installed without overwriting existing unchecked files.

Behaviour

The command reads package.json from the current working directory and processes all entries from binaries.

Files with configured extracted checksums are left untouched when already valid. A stale .downloads directory is removed in this mode. Downloads verified directly are cached only after successful checksum verification.

Temporary files are created below .cache/binaries and removed after each installation attempt. The command exits with a failure status when at least one binary cannot be processed.