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

@10xdevs/ogee

v0.1.5

Published

CLI to boot a Next.js app, capture a full-page screenshot with agent-browser, and save it as an OG image.

Readme

@10xdevs/ogee

Generate a clean Open Graph image for a Next.js app with one command.

@10xdevs/ogee is a focused CLI that:

  1. starts your app with npm run dev when needed
  2. reuses an already running app when the target port is live
  3. captures a production-ready OG image with agent-browser
  4. writes the result to app/opengraph-image.png

Why

Open Graph images are repetitive setup work. ogee is meant to remove that friction for Next.js projects and give you a solid default path:

  • fixed output path: app/opengraph-image.png
  • fixed OG size: 1200x630
  • PNG output for best image quality
  • no prompts for save path or aspect ratio

Usage

npx @10xdevs/ogee

If your app is already running on another port:

npx @10xdevs/ogee --port 3001

What It Does

When you run ogee, it:

  1. checks whether your app is already reachable
  2. starts npm run dev if it is not
  3. waits for the app to load
  4. opens the app in agent-browser
  5. captures the OG image
  6. saves it to app/opengraph-image.png

Options

--port <port>          Use a different local port
--url <url>            Use a specific app URL
--wait <ms>            Wait a bit longer before capture
--keep-server          Leave the dev server running after capture

Examples:

npx @10xdevs/ogee --wait 3000
npx @10xdevs/ogee --keep-server
npx @10xdevs/ogee --port 3001

Requirements

  • Node.js 20+
  • a Next.js app with npm run dev
  • npx available in your environment

Output

ogee always writes the generated image to:

app/opengraph-image.png

That matches the standard Next.js App Router OG image location.

Publish

npm publish --access public