
Security News
Axios Supply Chain Attack Reaches OpenAI macOS Signing Pipeline, Forces Certificate Rotation
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.
Minifies ZIP files by removing some parts that are usually unnecessary:
The CLI will modify the ZIP files in place. Back up any important archives before minifying them!
Removing these parts will be fine in most cases, but may break ZIP files that...
If any of these apply to a ZIP file, minifying it will remove parts that may be essential.
Some tools may require some of these parts for extra functionality. For example, 7-Zip uses the extra fields to store things like the creation date for files, which is not essential, but allows 7-Zip to display the date in the GUI and to add it to the file when extracting.
To use the JavaScript API, install the package like most NPM packages:
npm i minify-zip
To use the CLI, install the package globally:
npm i -g minify-zip
When installed globally, this package adds the minify-zip command:
minify-zip <file 1> <file 2> ... <file n>
This minifies any number of ZIP files in place. Make sure to back up any important files before minifying them.
Example:
> minify-zip example.zip
D:\Examples\example.zip
Minify time: 1.136ms
Before: 3578 bytes
After: 3362 bytes (93.96%)
Saved: 216 bytes (6.04%)
This exports a single synchronous function that takes a Buffer of the ZIP file content and returns a Buffer of the minified ZIP file:
import fs from 'node:fs'
import minify from 'minify-zip'
// Read a file
const file = fs.readFileSync('example.zip')
// Minify it
const minifiedFile = minify(file)
// Write it to a new file
fs.writeFileSync('example_minified.zip', minifiedFile)
FAQs
Remove unnecessary parts of ZIP files easily.
We found that minify-zip 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.

Security News
OpenAI rotated macOS signing certificates after a malicious Axios package reached its CI pipeline in a broader software supply chain attack.

Security News
Open source is under attack because of how much value it creates. It has been the foundation of every major software innovation for the last three decades. This is not the time to walk away from it.

Security News
Socket CEO Feross Aboukhadijeh breaks down how North Korea hijacked Axios and what it means for the future of software supply chain security.