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

renza

v0.10.0

Published

The Renza CLI — host, publish, and govern AI-generated documents from your terminal.

Downloads

2,638

Readme

renza

Host an HTML slide deck at a live link.

npx renza publish deck.html

Renza takes a deck written in plain HTML — by any AI tool, any model, or by hand — and hosts it at a shareable link with everything a document needs around it: navigation, keyboard controls, present mode, deep links, comments, and version history. You write the slides; Renza provides the rest.

No account needed to try it: logged out, publish gives you an anonymous link that expires in 7 days. renza login keeps decks permanently and adds sharing, review comments, and a version ledger.

Writing a deck

A deck is a sequence of top-level slide elements. Renza supplies all the chrome, so a conforming deck ships no nav buttons, no keyboard handler, no progress bar:

<!doctype html>
<meta name="renza:chrome" content="none">
<title>My deck</title>
<section data-renza-slide><h1>First slide</h1></section>
<section data-renza-slide><h1>Second slide</h1></section>

renza guide prints the full authoring contract. renza check deck.html validates a deck against it without publishing.

Updating a published deck

Publish with a stable id and reuse it on every publish — the link never changes, each publish adds a version, and open viewers are offered a refresh:

renza publish deck.html --external-id my-deck

For AI agents

  • renza init writes the deck-authoring contract into your repo as a Claude Code skill, Cursor rules, and an AGENTS.md section — your tools learn the format once.
  • renza commands prints the full command tree as JSON for capability discovery.
  • Every command supports --json for machine-readable output (the default when piped).

Everything else

The CLI covers the whole API — decks, versions, rollback, folders, shares, comments, access grants, API keys, orgs. renza --help lists it all; one command is one endpoint.

Docs: renza.io/docs · CLI reference: renza.io/docs/cli