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 🙏

© 2024 – Pkg Stats / Ryan Hefner

mozjpeg-stream

v1.0.3

Published

The awesome JPEG minifying power of mozjpeg wrapped up as a `.pipe` friendly stream

Downloads

60

Readme

mozjpeg-stream

The awesome JPEG minifying power of mozjpeg wrapped up as a .pipe friendly node duplex stream.

Grab flying pugs over http and automagically minify them with mozjpeg before letting them near your hard drive.

var fs = require('fs')
var http = require('http')
var mozjpeg = require('mozjpeg-stream')

http.get('http://aboutpug.com/wp-content/uploads/2015/01/flying-monkey-cute-pug.jpg')
  .on('response', function (resp) {
    resp
      .pipe(mozjpeg())
      .pipe(fs.createWriteStream('flying-pug.min.jpg'))
  })

And so this chunky 1.5M of raw pug

A heavy, 1.5M pug

...becomes 132K of optimal, progressive, mozjpeg'd, flying pug:

a svelte, 132K, progressive, mozjpeg pug

mozjpeg sets the compression quality to 75 by default, but you can adjust it:

fs.createReadStream('flying-pug.jpg')
  .pipe(mozjpeg({quality: 50}))
  .pipe(fs.createWriteStream('flying-pug.q50.jpg'))

So you can wring out further byte savings, and for many pictures, nothing of importance is lost...

84K of -quality 50, piped, progressive, mozjpeg'd, flying pug

a still fly 84K of -qualtiy 50, progressive, mozjpeg pug

More info

mozjpeg-stream wraps the most excellent mozjpeg module by the imagemin crew, which in turn wraps mozjpeg from the most excellent Mozilla. So it's good stuff all the way down.

  • https://blog.mozilla.org/research/2014/07/15/mozilla-advances-jpeg-encoding-with-mozjpeg-2-0/
  • https://hacks.mozilla.org/2014/08/using-mozjpeg-to-create-efficient-jpegs/
  • https://github.com/mozilla/mozjpeg/blob/7faa703ebf7360e5c0a37d71a74c293232998340/usage.txt#L68

A (╯°□°)╯︵TABLEFLIP side project.