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

libwebp-static

v1.0.5

Published

libwebp binaries for macOS, Linux and Windows

Readme

libwebp-static

NPM Version NPM Downloads License

Static libwebp binaries for macOS, Linux, and Windows.

A Node.js package that provides precompiled static binaries for all tools from Google's libwebp library, enabling WebP image conversion and manipulation without requiring manual installation or compilation.

✨ Features

  • 🚀 Zero compilation - No need to build libwebp from source
  • 🌍 Cross-platform - Works on macOS (x64/ARM64), Linux (x64/ARM64), and Windows (x64)
  • 📦 Complete toolset - Includes all libwebp command-line tools
  • Automatic installation - Binaries are downloaded during npm install
  • 🔧 Easy integration - Simple Node.js API for accessing binary paths

🛠️ Available Tools

This package includes the following libwebp command-line tools:

| Tool | Description | |------|-------------| | cwebp | Compress images to WebP format | | dwebp | Decompress WebP images to PNG/PPM/PAM/PGM/BMP | | gif2webp | Convert GIF animations to animated WebP | | img2webp | Create animated WebP from image sequence | | webpmux | Mux/demux tool for WebP images | | webpinfo | Display info about WebP images | | anim_diff | Compare animated WebP images | | anim_dump | Dump frames from animated WebP | | get_disto | Compute distortion metrics | | vwebp | Simple WebP viewer (GUI) | | webp_quality | Print quality estimates |

🖥️ Platform Support

| Platform | Architecture | Status | |----------|--------------|--------| | macOS | x64 (Intel) | ✅ | | macOS | ARM64 (Apple Silicon) | ✅ | | Linux | x64 | ✅ | | Linux | ARM64 | ✅ | | Windows | x64 | ✅ |

Sources of the binaries

The binaries download script downloads binaries from these locations:

The script extracts build information and (when possible) the license file from the downloaded package or the distribution server. Please consult the official WebP project for exact source versions.

📦 Installation

Install via npm:

npm install libwebp-static

Requirements

  • Node.js 12 or higher
  • Internet connection (for downloading binaries during installation)

Platform-specific requirements

  • macOS: No additional requirements
  • Linux: tar and gzip utilities (usually pre-installed)
  • Windows: No additional requirements

Available Binary Paths

All tools are available as properties of the exported object:

  • webpTools.cwebp - WebP encoder
  • webpTools.dwebp - WebP decoder
  • webpTools.gif2webp - GIF to WebP converter
  • webpTools.img2webp - Image sequence to WebP converter
  • webpTools.webpmux - WebP multiplexer
  • webpTools.webpinfo - WebP information tool
  • webpTools.anim_diff - Animation comparison tool
  • webpTools.anim_dump - Animation frame extractor
  • webpTools.get_disto - Distortion calculation tool
  • webpTools.vwebp - WebP viewer (GUI)
  • webpTools.webp_quality - Quality estimation tool

Getting Help

📄 License

This project is licensed under the GPL-3.0-or-later License - see the LICENSE file for details.

The libwebp library is licensed under a separate license. For more information, please refer to the libwebp license.

🙏 Acknowledgments

  • Google WebP team for the excellent WebP library
  • Contributors and users of this package
  • The Node.js community for inspiration and best practices