minify-html-wasm
v0.1.1
Published
Extremely fast and smart HTML + JS + CSS minifier
Downloads
40
Maintainers
Readme
minify-html-wasm
A wasm wrapper of the rust crate minify-html.
Install
npm i minify-html-wasm
Usage
import init, { minify } from "minify-html-wasm";
const encoder = new TextEncoder();
const decoder = new TextDecoder();
await init("https://cdn.jsdelivr.net/npm/minify-html-wasm/web/wasm");
const minified = decoder.decode(
minify(encoder.encode("<p> Hello, world! </p>"), {
keep_spaces_between_attributes: true,
keep_comments: true,
})
);