Research
Security News
Quasar RAT Disguised as an npm Package for Detecting Vulnerabilities in Ethereum Smart Contracts
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
imagemin-overwrite
Advanced tools
Minify images seamlessly and in-place. Forked from imagemin/imagemin.
$ npm install imagemin-overwrite
const imagemin = require('imagemin-overwrite');
const imageminJpegtran = require('imagemin-jpegtran');
const imageminPngquant = require('imagemin-pngquant');
(async () => {
const files = await imagemin(['images/*.{jpg,png}'], {
plugins: [
imageminJpegtran(),
imageminPngquant({
quality: [0.6, 0.8]
})
]
});
console.log(files);
//=> [{data: <Buffer 89 50 4e …>, sourcePath: 'images/foo.jpg', destinationPath: 'images/foo.jpg'}, …]
})();
Returns Promise<object[]>
in the format {data: Buffer, sourcePath: string, destinationPath: string}
.
Type: string[]
File paths or glob patterns.
Type: object
Type: string
Set the destination folder to where your files will be written. If no destination is specified, the original files will be overwritten.
Type: Array
Plugins to use.
Type: boolean
Default: true
Enable globbing when matching file paths.
Returns Promise<Buffer>
.
Type: Buffer
Buffer to optimize.
Type: object
Type: Array
Plugins to use.
FAQs
Minify images seamlessly and in-place
The npm package imagemin-overwrite receives a total of 130 weekly downloads. As such, imagemin-overwrite popularity was classified as not popular.
We found that imagemin-overwrite demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.
Research
Security News
Socket researchers uncover a malicious npm package posing as a tool for detecting vulnerabilities in Etherium smart contracts.
Security News
Research
A supply chain attack on Rspack's npm packages injected cryptomining malware, potentially impacting thousands of developers.
Research
Security News
Socket researchers discovered a malware campaign on npm delivering the Skuld infostealer via typosquatted packages, exposing sensitive data.