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

gulp-tinypng-extended

v3.0.3

Published

TinyPNG API wrapper for compressing PNG & JPG images

Downloads

513

Readme

Version Downloaded Build

gulp-tinypng-extended

TinyPNG API wrapper for compressing PNG & JPG images

An actively maintained & developed fork of gulp-tinypng-compress.

Main differences from gulp-tinypng-compress

  • Added new option (keepMetadata) to preserve metadata. Currently only copyright and creation date is supported.
  • Added new option (keepOriginal) to override the original image instead of creating a new compressed file in the output path.
  • Updated minimatch plugin to current version to avoid deprecated warnings.
  • Fixed Problem with Bad Gateway errors receiving from the api. On error the plugin tries on default 10 times a reattempt and simply skips the image if the server is still not reachable (Thanks to @kevinranks) compressing the next images.
  • On error the signature file is still being written for all successfully compressed files.
  • Added check for empty or broken images to be skipped and not send

Install

Requires node 10.x.x or above

Install with npm - In your project folder, run:

npm install gulp-tinypng-extended

To run tests:

npm test

Example

var gulp = require('gulp');
var plumber = require('gulp-plumber');
var tinypng = require('gulp-tinypng-extended');

gulp.task('tinypng', function () {
	return gulp.src('images/src/**/*.{png,jpg,jpeg}')
		.pipe(plumber())
		.pipe(tinypng({
			key: 'API_KEY',
			sigFile: 'images/.tinypng-sigs',
			log: true
		}))
		.pipe(gulp.dest('images'));
});

API

tinypng([options])

Returns Stream containing compressed images

options

Type: Object / String Default: false

Sets options described below from its properties. If type is not object, string presumed (the API key)

options.key

Type: String Default: ''

Your TinyPNG API key to use for requests

options.sigFile

Type: String Default: ''

If set to a filename, it will compare existing source file md5 signatures against those found in the file's json data. When the signatures match, the file is skipped from being minified again, allowing you to better stay within your API request limits. When an image is minified, the md5 signature is determined from the unminified source image and written to the file at options.sigFile (a suggested location would be somewhere under your source control).

Signatures are based off the unminified source image, so that when the source changes it will be re-minified and re-written to the destination file.

options.sameDest

Type: Boolean Default false

If your source is the same as your destination (images are written over themselves), and you want to use the signature checking feature, set this to true

Note: If your source and destination are the same, it's recommended you use this, and options.sigFile, as it prevents you from continually uploading already compressed images each time you run the task

options.keepOriginal

Type: Boolean Default True

With this option you can tell the plugin to override your original file with the compressed one. The gulp.dest() output path for the images is then being ignored.

options.keepMetadata

Type: Boolean Default False

If you want to keep the metadata in the compressed image then you should set this option to true. Because this adds some additional bytes to the compressed file it is disabled by default.

options.summarize/summarise

Type: Boolean Default: false

Outputs statistics once all images have been handled.

[09:47:43] gulp-tinypng-extended Skipped: 0 images, Compressed: 1 image, Savings: 3.98 KB (ratio: 0.4109)

options.log

Type: Boolean Default: false

Set to true to log errors & messages to the console. Errors are dispatched via events anyway, so plugins like gulp-plumber can handle these for you.

options.parallel

Type: Boolean Default: true

Enables concurrent uploads to the TinyPNG server to speed up total compression time.

(thanks HugoHeneault for this feature suggestion)

options.parallelMax

Type: Integer Default: 5

The amount of concurrent uploads allowed at one time, increase if you/your request limits can handle it - very easy to max out your monthly requests, use with caution!

options.force

Type: Boolean / String Default: false

Force compress images regardless of signature. Value can either be true to force all images, or a glob pattern string to match against the filename(s).

Can also be performed from the command line:

$ gulp png --force 'icon-*.png'

This feature was added as it's impossible to know where the files are being written to at this point in the stream, unless the directory is directly passed into the config (pretty ugly). So the option was added to force certain (or all) files to be compressed when required.

options.ignore

Type: Boolean / String Default: false

Same as options.force except ignores files if the glob is matched

--ignore flag on the command line

options.retryAttempts

Type: Integer Default: 10

How many times to reattempt the upload if an error is encountered.

options.retryDelay

Type: Integer Default: 10000

How many milliseconds to delay before reattempting a failed upload.

Deprecated/non-functional options

options.checkSigs - Removed in favor of options.sigFile

License

Please refer to the LICENSE file.

Original license:

MIT © Stan Hutcheon MIT © Gaurav Jassal