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

a4kit

v0.1.2

Published

CLI for A4Kit - document generation infrastructure for developers

Readme

a4kit

CLI for A4Kit - document generation infrastructure for developers. Author document templates as code (HTML + Liquid, Tailwind CSS, YAML config), preview them locally with HMR, and deploy them to the A4Kit rendering API.

Install

npm install -g a4kit

npx a4kit@latest init also works as a zero-install first touch, but every other command below assumes the global install.

Quickstart

a4kit init             # scaffold a new template project in the current directory
a4kit dev               # local preview server with HMR at localhost:4444
a4kit deploy            # sync local templates to the A4Kit API registry

Commands

| Command | Description | | --- | --- | | a4kit init | Scaffold a new A4Kit document project in the current directory | | a4kit dev | Start a local dev server with HMR at localhost:4444 | | a4kit deploy | Sync local templates to the A4Kit API registry | | a4kit login | Save your API token locally so a4kit deploy works without flags | | a4kit preview --production | Preview the deploy-time flattened, self-contained output | | a4kit postman | Generate a Postman Collection v2.1 from local templates | | a4kit migrate | Migrate a4kit.yaml files from deprecated size/orientation to width/height (mm) |

Run a4kit <command> --help for command-specific options.

Optional: local PDF preview

a4kit dev's in-browser PDF preview renders with a headless Chromium via Playwright, which is not installed by default (it's a large, optional dependency). To use it:

npm install -g playwright
npx playwright install chromium

Without it, everything else (HTML preview, a4kit deploy) still works normally.

License

MIT