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

optipng-js

v0.1.2

Published

The native javascript png optimizer.

Downloads

584

Readme

Optipng.js

Optipng.js is the port of optipng in javascript using emscripten. You can optimize png image file without losing any information in the morden browser using Optipng.js.

Tip: Optipng version is 0.7.7.

API

optipng(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.png");
var output = optipng(input, ["-o2"]);
// 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 = optipng(input, ["-o2"]);
    // do something with output
});

options

Options can be array or object.

var options = ["-o2", "-i0", "-strip", "all"];
var options = {o2: true, i0: true, strip: "all"};
// 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 optipng will print something on stdout or stderr.

optipng(input, ["-o2"], function(str) {
    console.log(str);
});

return

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

Full Example

Node.js

$ npm i -S optipng-js
var optipng = require("optipng-js");
var fs = require("fs");

var input = fs.readFileSync("input.png");
var output = optipng(input, ["-o2"]);
// var output = optipng(input, {"o2": true});
/*
    output = {
        data: output file,
        stdout: output string,
        stderr: error string
    }
*/

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

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

Browser

Please check Demo with Web worker. https://li-na.github.io/optipng.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. First, please setup emscript sdk on here. Then, download or clone this git and download optipng source code from website. Don't forget to extract optipng on ./deps/optipng. Finally, just run ./build.sh on Linux. It will configure optipng and compile with emcc.

License

MIT License