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

js-mozjpeg

v0.1.2

Published

The native javascript jpeg optimizer.

Readme

Mozjpeg.js

Mozjpeg.js is the port of mozjpeg in javascript using emscripten. You can process jpeg file using cjpeg, djpeg and jpegtran. You can also otimize image loss / lossless in the browser.

Tip: Mozjpeg version is Tag 1.5.3 (I just clone git. Check this tree).

API

cjpeg(file, options, printFunction)

file

Please use binary file like readFile on node or Uint8Array (converted from base64) on javascript.

// Node.js
var input = fs.readFileSync("input.jpg");
var output = mozjpeg.cjpeg(input, ["-quality", "85"]);
// Browser
function dataURLtoUint8(dataurl) {
    var arr = dataurl.split(','),
        mime = arr[0].match(/:(.*?);/)[1],
        bstr = atob(arr[1]),
        n = bstr.length,
        u8arr = new Uint8Array(n);
    while (n--) {
        u8arr[n] = bstr.charCodeAt(n);
    }
    return u8arr;
}
function readFile (file, callback) {
    var fileReader = new FileReader();
    fileReader.onload = function() {
        var ary = dataURLtoUint8(this.target.result);
        callback(ary);
    };
    fileReader.readAsDataURL(file);
}

var input, output;
readFile(your_file_on_here, function(ary) {
    input = ary;
    output = cjpeg(input, ["-quality", "85"]);
    // do something with output
});

options

Options can be array or object. Please check this document to learn about mozjpeg optinos.

var options = ["-quality", "85", "-optimize", "-progressive"];
var options = {quality: "85", optimize: true, progressive: true};
// Both options is same options. If use boolean in value, value will be ignored and only key will be inserted as options.

printFunction

This callback function is optional. It will be called if mozjpeg will print something on stdout or stderr.

// Node.js
mozjpeg.cjpeg(input, ["-quality", "85"], function(str) {
    console.log(str);
});
// Browser
cjpeg(input, ["-quality", "85"], function(str) {
    console.log(str);
});

return

output = {
    data: [output file],
    stdout: [output string],
    stderr: [error string]
};

djpeg(file, options, printFunction)

Those argument is same as cjpeg.

jpegtran(file, options, printFunction)

Those argument is same as cjpeg.

Node.js

If you are using node.js, you can use like below.

var mozjpeg = require("js-mozjpeg");
// ~~~
var output_cjpeg = mozjpeg.cjpeg(input, ["-quality", "85"]);
var output_djpeg = mozjpeg.djpeg(input, ["-grayscale"]);
var output_jpegtran = mozjpeg.jpegtran(input, ["-rotate", "90"]);

Full Example

Node.js

$ npm i -S js-mozjpeg
var mozjpeg = require("js-mozjpeg");
// mozjpeg-js is already exist.
var fs = require("fs");

var input = fs.readFileSync("input.jpg");
var output = mozjpeg.cjpeg(input, ["-quality", "85"]);
// var output = mozjpeg.cjpeg(input, {quality: "85"});
// You can also use mozjpeg.djpeg and mozjpeg.jpegtran.
/*
output = {
    data: output file,
    stdout: output string,
    stderr: error string
}
*/

console.log(output.stdout);
console.log(output.stderr);

fs.writeFileSync("output.jpg", output.data);

Browser

Please check Demo with Web worker. https://li-na.github.io/mozjpeg.js/

Build

Actually, I don't know what it is but I made build shell script and it seems working. Please let me know if you have ANY better way to build this project.

You have to setup emscripten sdk on here first.

Then, download or clone this git on your linux computer. (Windows does not supported at this moment)

$ git clone https://github.com/LI-NA/mozjpeg.js

Finally, just run ./build.sh. It will install build-essential cmake libtool autoconf automake m4 nasm pkg-config libpng-dev packages and configure / compile mozjpeg with emcc.

Credit

I refered to as-com's mozjpeg-js.

License

MIT License

Mozjpeg source code is under libjpeg-turbo Licenses