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

abe-yells-at

v1.3.0

Published

Create animated stickers of Grandpa Abe Simpson yelling at your logo

Readme

abe-yells-at

npm version npm downloads license

Create animated stickers of Grandpa Abe Simpson yelling at your logo. Export as GIF, WebP, or static PNG.

Try it in the browser at abeyells.at.

CLI

Generate stickers from the command line, no code needed.

Install

npm install -g abe-yells-at
# or
pnpm add -g abe-yells-at
# or
bun add -g abe-yells-at

Or run directly without installing:

npx abe-yells-at logo.png

Options

| Flag | Values | Default | Description | |------|--------|---------|-------------| | --preset, -p | large, medium, small | large | Output size (512px, 320px, 128px) | | --format, -f | gif, webp, png, all | all | Output format. all generates GIF + WebP + PNG | | --output, -o | directory path | same as input | Where to save the output files | | --help, -h | | | Show help message |

Output

Files are named abe-yells-at-<name>-<preset>.<ext>. For example:

abe-yells-at-logo-large.gif   # animated GIF
abe-yells-at-logo-large.webp  # animated WebP
abe-yells-at-logo-large.png   # static PNG (frame 1)

Examples

# Generate all formats at large size
abe-yells-at logo.png

# Small GIF only
abe-yells-at logo.png -p small -f gif

# Static PNG at medium size
abe-yells-at logo.png -f png -p medium

# Save to a specific directory
abe-yells-at logo.png -o ./stickers

Library

npm install abe-yells-at
# or
pnpm add abe-yells-at
# or
bun add abe-yells-at

Node.js

The logo option accepts a file path, URL, Buffer, ArrayBuffer, Uint8Array, or Blob.

import { createSticker } from "abe-yells-at";

const result = await createSticker({
  logo: "./my-logo.png",
  preset: "large",   // "large" | "medium" | "small"
  format: "gif",     // "gif" | "webp" | "png"
  onProgress: (percent) => console.log(percent + "%"),
});

// result.data    Uint8Array of the encoded image
// result.format  "gif" | "webp" | "png"
// result.width   pixel width
// result.height  pixel height
// result.preset  preset used
fs.writeFileSync("sticker.gif", result.data);

Browser

Use createStickerFromImages with pre-loaded frames. Copy the 9 frame PNGs from node_modules/abe-yells-at/frames/ to your public directory and load them with loadFrameImages. The logo must be an HTMLImageElement or ImageBitmap.

import { createStickerFromImages, loadFrameImages } from "abe-yells-at";

const frames = await loadFrameImages("/frames");
const result = await createStickerFromImages({
  frames,
  logo: myImageElement,
  preset: "medium",
  format: "webp",
  onProgress: (percent) => console.log(percent + "%"),
});

// Convert to a downloadable Blob
const blob = new Blob([result.data], { type: "image/webp" });

Size Presets

| Preset | Size | |--------|------| | large | 512x512 | | medium | 320x320 | | small | 128x128 |

License

MIT