![require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages](https://cdn.sanity.io/images/cgdhsj6q/production/be8ab80c8efa5907bc341c6fefe9aa20d239d890-1600x1097.png?w=400&fit=max&auto=format)
Security News
require(esm) Backported to Node.js 20, Paving the Way for ESM-Only Packages
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
@tdewolff/minify
Advanced tools
JavaScript bindings for the Go minifiers for web formats minify
, see github.com/tdewolff/minify.
THIS DOES NOT WORK UNFORTUNATELY
$ npm install @tdewolff/minify
mingw32-make
binary$ git clone https://github.com/tdewolff/minify
$ cd minify/bindings/js
$ npm install
There are three functions available in JavaScript: configure the minifiers, minify a string, and minify a file. Below an example of their usage:
import { config, string, file } from '@tdewolff/minify';
# default config option values
config({
'css-precision': 0,
'html-keep-comments': false,
'html-keep-conditional-comments': false,
'html-keep-default-attr-vals': false,
'html-keep-document-tags': false,
'html-keep-end-tags': false,
'html-keep-whitespace': false,
'html-keep-quotes': false,
'js-precision': 0,
'js-keep-var-names': false,
'js-version': 0,
'json-precision': 0,
'json-keep-numbers': false,
'svg-keep-comments': false,
'svg-precision': 0,
'xml-keep-whitespace': false,
})
const s = string('text/html', '<span style="color:#ff0000;" class="text">Some text</span>')
console.log(s) // <span style=color:red class=text>Some text</span>
file('text/html', 'example.html', 'example.min.html') // creates example.min.html
The first argument is the mediatype of the content. The following mediatypes correspond to the configured minifiers:
text/css
: CSStext/html
: HTMLimage/svg+xml
: SVG(application|text)/(x-)?(java|ecma)script
: JS*/json */*-json
: JSON*/xml */*-xml
: XMLFAQs
Go minifiers for web formats
We found that @tdewolff/minify demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 0 open source maintainers 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
require(esm) backported to Node.js 20, easing the transition to ESM-only packages and reducing complexity for developers as Node 18 nears end-of-life.
Security News
PyPI now supports iOS and Android wheels, making it easier for Python developers to distribute mobile packages.
Security News
Create React App is officially deprecated due to React 19 issues and lack of maintenance—developers should switch to Vite or other modern alternatives.