Package Exports
- imagemin
- imagemin/package
- imagemin/package.json
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (imagemin) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
imagemin

Minify images seamlessly
Install
$ npm install --save imagemin
Usage
const imagemin = require('imagemin');
const imageminMozjpeg = require('imagemin-mozjpeg');
const imageminPngquant = require('imagemin-pngquant');
imagemin(['images/*.{jpg,png}'], 'build/images', {
plugins: [
imageminMozjpeg({targa: true}),
imageminPngquant({quality: '65-80'})
]
}).then(files => {
console.log(files);
//=> [{data: <Buffer 89 50 4e …>, path: 'build/images/foo.jpg'}, …]
});
API
imagemin(input, output, [options])
Returns a promise for an array of objects in the format {data: Buffer, path: String}
.
input
Type: array
Files to be optimized. See supported minimatch
patterns.
output
Type: string
Set the destination folder to where your files will be written. If no destination is specified no files will be written.
options
plugins
Type: array
Array of plugins to use.
imagemin.buffer(buffer, [options])
Returns a promise for a buffer.
buffer
Type: buffer
The buffer to optimize.
options
plugins
Type: array
Array of plugins to use.
Related
- imagemin-cli - CLI for this module
- imagemin-app - GUI app for this module.
- gulp-imagemin - Gulp plugin.
- grunt-contrib-imagemin - Grunt plugin.
License
MIT © imagemin