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

minimage

v2.0.5

Published

A CLI tool to optimise raster images with TinyPNG and SVG with SVGO

Downloads

69

Readme

📸 Minimage

Minimage is a CLI tool to optimise raster and SVG images with a bit of a difference, its main 3 differences are

  • It uses a manifest allowing you to resume stop/start at any time - preventing double optimisations.
  • It uses a remote optimisation system - TinyPNG.
  • Can be run server side on cron jobs.

Manifest

The manifest itself is a JSON collection of all the images it has processed - this should be commited to your version control to make sure other team members don't double compress images.

Each file that is processed will have an entry in the manifest storing a hash of it, allowing us to detect if the file has changed before re-optimising, if the hash has not changed it will skip to make sure you do not lose more quality.

### TinyPNG

We've opted to use TinyPNG as it is much faster than running it on your local machine, it also allows you to get the latest optimisation techniques as soon as they're available without updating your local systems. It also means you only have to have Node installed on your system to use it, rather than all the optimisation binaries.

The downside is that the free plan only has 500 optimisations a month (svg is not included)

Server Side

As it is just a NodeJS script, if you have the node binaries on your server, you can set up a cron job to run the script every day or so keep user uploaded content optimised as well.

Installation

To add to your project do a normal npm i minimage or yarn add minimage

First you'll need to generate the manifest and config file with npx minimage init

This will create you a

  • minimage.config.js
  • minimage.json

The minimage.config.js is your config, you can use normal glob patterns and the minimage.json will contain an empty array to start with and will be built up over time.

Configuration

Your config will look something like:

module.exports = {
    "tinypng_key": "XXXXXXXXXXXXXXXXX",
    "paths": [
      "./web/assets/**/*.{png,jpg,gif,svg}",
      "./web/uploads/**/*.{png,jpg,gif,svg}",
    ],
    "exclusions": [],
    "compress_if_larger_than_in_kb": 0
  }
  • Add your TinyPNG key to the config which you can get from https://tinypng.com/developers
  • Add your array of paths to check for images
  • Enter the full path to specific images you want to exclude e.g. ./web/assets/logo.png

Usage

Once installed you should simply run npx minimage and it will process your images one by one.

There might be times that you want to pass the API key in via the CLI rather than the config, this can be done by defining the environment variable before running the script.

TINYPNG_KEY=XXXXXXXXXXXXXXXXXXXXX npx minimage

Upgrading from V1

Internally a complete rewrite has been made using the latest Tinify and SVGO, however the public facing API is the same.

We've renamed .minimage to minimage.config.js and you'll now need to add module.exports = to your config for Node (See the stubs).

Everything else should be the same, just install v2 via npm.