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

akmcompress

v0.1.1

Published

Browser-only image compression to WebP with adaptive quality and social-media friendly defaults.

Readme

akmcompress

akmcompress is a browser-only image compressor for upload workflows like social media posting, creator dashboards, and image submission forms.

It outputs .webp files and tries to get files as small as possible without dropping straight into destructive ultra-low-quality defaults.

What It Does

  • Compresses images to WebP
  • Uses adaptive quality search instead of one fixed quality level
  • Downscales large images by default for better upload efficiency
  • Keeps aspect ratio intact
  • Exposes options when you need stricter byte or dimension limits
  • Works in the browser with File, Image, canvas, and URL.createObjectURL

Install

npm install akmcompress

Quick Start

import { compressImage } from "akmcompress";

const input = fileInput.files?.[0];

if (input) {
  const result = await compressImage(input);

  console.log(result.file);
  console.log(result.info);
  console.log(result.savedBytes);
}

Social Media Example

import { compressImage } from "akmcompress";

const result = await compressImage(file, {
  maxDimension: 1600,
  maxOutputBytes: 180_000,
});

Keep Original Dimensions

import { compressImage } from "akmcompress";

const result = await compressImage(file, {
  preserveDimensions: true,
  maxOutputBytes: 250_000,
});

API

compressImage(file: File, options?: CompressionOptions): Promise<CompressionResult>

Compresses an image to WebP and returns:

  • file: the compressed output file
  • previewUrl: an object URL for previewing the compressed result
  • info: output file metadata
  • savedBytes: byte savings compared with the input file

CompressionOptions

type CompressionOptions = {
  maxOutputBytes?: number;
  maxDimension?: number;
  preserveDimensions?: boolean;
  minQuality?: number;
  maxQuality?: number;
};

createPreviewAsset(file: File)

Creates a preview object URL and image metadata for any input File.

formatFileSize(bytes: number)

Formats bytes into a readable string like 512 B, 1.2 KB, or 2.34 MB.

Notes

  • Browser-only package. It does not run in plain Node.js.
  • Output format is always WebP.
  • By default, very large images are downscaled to make upload sizes more practical.
  • If you need original dimensions, set preserveDimensions: true.
  • Tiny targets like 1 KB are not realistic for most normal images without severe visible degradation.

Publish

npm run build
npm pack --dry-run
npm publish