A Node.js package wrapping the fulljsmin.js minifier from Pretty-Diff, supporting JavaScript and CSS minification. Version 0.1.0 is the latest and only release. It provides a simple synchronous API and a command-line interface. Unlike more modern minifiers (e.g., terser, cssnano), it is not actively maintained and lacks features like source maps, async support, or streaming.
npm install fulljsminNo compatibility data collected yet for this library.
Verified import paths — ran on the pinned version, not inferred.
Shows how to minify JavaScript using the fulljsmin package with ESM import.
Consider using 'terser' or 'cssnano' for actively maintained alternatives.
If you need large file support, buffer the entire file into memory.
Always validate input type before calling.
Run 'npm install fulljsmin' in your project directory.
Use 'import jsmin from 'fulljsmin'' or 'const jsmin = require('fulljsmin')'.Ensure the 'source' property is a non-empty string.
No dependency data recorded yet.