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

xxxstripper

v0.1.1

Published

Strip image metadata locally in the browser or from the terminal.

Readme

Stripper

assets/screenshot.png

Stripper is a static browser app and a CLI tool for removing image metadata locally. There is still no backend, no upload step, and no remote processing for the web app.

Why

Before

Some websites make use of image metadata when uploading images to display information. For example when you generate an image using AI and post on x.com it displays it like this (Notice the "Made with AI" footer):

assets/example.png

After

To get rid of these tags, simply drag and drop any image on Stripper, and it will show you what is in the image, and will let you download a clean version, so you can upload the clean image to social media sites.

assets/after.png

Usage

Browser

  • 1-Click Launch: Just install and run with 1-click from https://pinokio.co
  • Manual: Clone this repo and open index.html in your browser

Notes:

  • JPEG, PNG, and WebP are exported in their original format when possible.
  • PNG output also removes resolution/density metadata such as the pHYs chunk.
  • Unsupported browser image formats fall back to PNG export.
  • Animated formats are flattened to a single frame because the app exports a canvas snapshot.
  • Metadata preview is best for common JPEG EXIF, PNG text chunks, and WebP EXIF/XMP metadata, and it flags unparsed embedded metadata blocks when it detects them.

CLI

npx xxxstripper ./image.png

CLI Reference

Syntax:

npx xxxstripper <source> [target] [--format <jpg|png|webp>]

Arguments:

  • source: Required path to the input image.
  • target: Optional output path. If omitted, Stripper writes a sibling file named *-clean.<ext>.

Options:

  • -h, --help: Print usage and exit.
  • -f, --format <jpg|png|webp>: Force the output format.
  • -o, --output <path>: Set the output path explicitly. This is supported for compatibility, but the preferred interface is the second positional target argument.

Rules:

  • You can provide the output path either as the second positional argument or with --output, but not both.
  • If target is omitted, the default output path is created next to the source file.
  • If the output file already exists, the CLI currently overwrites it.
  • On success, the CLI prints the resolved output path to stdout.
  • On failure, the CLI prints the error message to stderr and exits with status code 1.

Output format precedence:

  1. --format
  2. Output file extension inferred from target or --output
  3. Original file format, if it is jpeg, png, or webp
  4. Fallback to png

Examples:

npx xxxstripper ./image.png
npx xxxstripper ./image.png ./image-clean.png
npx xxxstripper ./image.png --format webp
npx xxxstripper ./image.png ./image-clean.webp --format webp
npx xxxstripper ./image.png --output ./custom/output.png

Behavior:

  • The CLI reads the input image with sharp.
  • It applies EXIF orientation via auto-rotate before writing the clean file.
  • It re-encodes the image without preserving source metadata.
  • PNG output also removes resolution/density metadata such as the pHYs chunk.
  • jpeg output is flattened onto white if the source has transparency.
  • For non-jpeg/png/webp inputs, output falls back to png unless you explicitly choose a supported format.