npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2026 – Pkg Stats / Ryan Hefner

astro-crunch

v0.1.0

Published

Fast, conservative post-build HTML compression for Astro.

Readme

astro-crunch

Fast, conservative post-build HTML crunching for Astro.

This Astro integration runs after astro build, walks generated HTML files, and writes smaller output back to the build directory. It does not transform source .astro files.

Install

npm install astro-crunch
pnpm add astro-crunch
yarn add astro-crunch
bun add astro-crunch

Usage

import { defineConfig } from "astro/config";
import compressHtml from "astro-crunch";

export default defineConfig({
  integrations: [
    compressHtml({
      minifyHtml: true,
      minifyInlineJs: true,
      minifyInlineCss: true,
    }),
  ],
});

Options

interface CompressHtmlOptions {
  minifyHtml?: boolean;
  minifyInlineJs?: boolean;
  minifyInlineCss?: boolean;
  failOnError?: boolean;
  verbose?: boolean;
  target?: string;
  include?: string[];
  exclude?: string[];
}

| Option | Default | Description | | --- | --- | --- | | minifyHtml | true | Minify generated HTML with conservative @swc/html settings. | | minifyInlineJs | false | Minify eligible inline classic/module scripts with esbuild. | | minifyInlineCss | false | Minify inline <style> blocks with esbuild. | | failOnError | false | Throw on the first failed file instead of warning and keeping the original. | | verbose | false | Print a before/after byte summary even when no files changed. | | target | "es2020" | JavaScript/CSS target passed to esbuild. | | include | ["**/*.html"] | Glob patterns matched inside Astro's output directory. | | exclude | [] | Glob patterns ignored inside Astro's output directory. |

Safety Notes

The integration protects these regions before whole-document HTML minification:

  • <pre>
  • <code>
  • <textarea>
  • external scripts
  • JSON-LD scripts
  • import maps
  • unknown or non-JS script types

Inline JavaScript and CSS minification are opt-in because those blocks often contain framework data, templates, or code with assumptions outside normal bundled assets.

The default HTML pass avoids aggressive rewrites such as optional tag removal, attribute sorting, quote removal, boolean attribute collapsing, and attribute normalization.

Reporting

When files are changed, the integration reports how many HTML files were compressed and the before/after byte count:

compressed 4/4 HTML files; 18400/22120 bytes (3720 saved, 16.8%)

Use verbose: true to always print the summary.

When Not To Use This

Do not use this package when:

  • another post-build HTML optimizer is already responsible for generated HTML
  • your deployment or tests depend on exact generated HTML bytes
  • pages contain unusual whitespace-sensitive markup outside protected elements
  • gzip or Brotli already gives enough benefit and build-time HTML rewriting is unnecessary