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

mozjpeg-neo

v9.0.0

Published

mozjpeg wrapper that makes it seamlessly available as a local dependency

Readme

mozjpeg-neo

npm version npm downloads license

Fork of imagemin/mozjpeg-bin with improvements and support for modern Node.js versions.

mozjpeg is a production-quality JPEG encoder that improves compression while maintaining compatibility with the vast majority of deployed decoders.

Key difference: this package does not compile the binary from source during installation. Instead, it uses pre‑built binaries for various platforms, which speeds up installation and avoids compilation issues.

Changes and improvements over the original

  • Updated dependencies: migration to modern Node.js versions (ESM, Node.js 18+ support).
  • Simplified installation: no need to compile from source – ready‑to‑use binaries are included.
  • Enhanced TypeScript support: type definitions provided (dist/index.d.ts).
  • Optimized package structure: removed unnecessary files, kept only the essentials (bin, dist, types, vendor).
  • Fixed compatibility issues with newer npm/pnpm versions.
  • Added development scripts (test, lint, fix, check).
  • Support for pnpm and other modern package managers.

Install

$ npm install mozjpeg-neo

Or using pnpm:

$ pnpm add mozjpeg-neo

Or globally (for CLI usage):

$ npm install --global mozjpeg-neo

Usage

Programmatic API

import { execFile } from "node:child_process";
import { mozjpeg } from "mozjpeg-neo";
import { join } from "node:path";
import { cwd } from "node:process";

const __dirname = cwd();
const file = join(__dirname, "test", "input.jpg");
const out = join(__dirname, "test", "output.jpg");

execFile(mozjpeg, ["-outfile", out, file], (error) => {
  if (error) throw error;
  console.log("Image minified!");
});

CLI

After global installation:

$ mozjpeg --help

Example image compression:

$ mozjpeg -outfile output.jpg input.jpg

No source compilation

This package does not compile mozjpeg from source code during installation. Instead, the vendor/ folder contains pre‑built binaries for supported platforms (Windows, macOS, Linux). This avoids compiler dependency issues (CMake, NASM, etc.) and significantly speeds up the installation process.

If you need to build mozjpeg yourself, please refer to the official mozjpeg repository.

Supported platforms

  • Windows (x64)
  • macOS (x64, arm64)
  • Linux (x64, arm64)

Binaries are automatically selected based on the OS and Node.js process architecture.

Development

Clone the repository and install dependencies:

$ git clone https://github.com/llcawc/mozjpeg-neo.git
$ cd mozjpeg-neo
$ pnpm install   # or npm install

Run tests:

$ pnpm test

Linting and formatting:

$ pnpm lint
$ pnpm fix
$ pnpm check

License

MIT License. Copyright (c) 2026 pasmurno by llcawc. Based on imagemin/mozjpeg-bin.

Made with ❤️ for beautiful architecture.