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

instant-publish

v1.4.0

Published

Turn any document into a shareable link on chillai.space

Downloads

36

Readme

instant-publish

Turn any document into a shareable link on chillai.space.

Your AI generates a report, a page, a document — instant-publish gives it a permanent URL in one command. No hosting setup, no deploy pipeline. Just a link.

Supported formats

| Format | Browser | AI access (?raw) | |--------|---------|-------------------| | .md / .markdown | Rendered as clean HTML with GitHub-style typography | Raw markdown | | .txt | Monospace text | Raw text | | .html | Served as-is | — |

Markdown is the recommended format for text-heavy content. AI agents can access the raw source instantly via ?raw — no HTML parsing needed.

Setup

npx instant-publish init

This does three things:

  1. Generates your API key
  2. Registers it with chillai.space
  3. Adds instructions to Claude Code so it knows how to publish automatically

Usage

# Publish markdown (recommended)
npx instant-publish deploy report.md --slug quarterly-report
# → Published: https://chillai.space/p/quarterly-report?password=A1b2C3dE
# → Raw (for AI): https://chillai.space/p/quarterly-report?password=A1b2C3dE&raw

# Publish HTML (self-contained, inline CSS)
npx instant-publish deploy page.html --slug landing-page

# Publish plain text
npx instant-publish deploy notes.txt --slug meeting-notes

# Republish (preserves password)
npx instant-publish deploy report-v2.md --slug quarterly-report --password A1b2C3dE

# List your pages
npx instant-publish list

# Delete a page
npx instant-publish delete quarterly-report

# Open portal — admin dashboard to browse, preview, and manage all your pages
npx instant-publish portal

Raw access for AI agents

When you publish .md or .txt files, the raw source is stored alongside the rendered HTML. AI agents can read it by appending &raw to the URL:

https://chillai.space/p/my-doc?password=xxx&raw

This returns plain text/markdown or text/plain — no HTML wrapper, no parsing needed. Content negotiation also works: requests with Accept: text/markdown or Accept: text/plain headers get raw source automatically.

How it works

  • Content is stored on Cloudflare R2 (edge-cached globally)
  • Pages are password-protected by default (SHA-256 hashed)
  • Markdown is rendered to HTML at deploy time (via marked), raw source stored separately
  • Republishing preserves the password — existing links keep working
  • Pages are served at https://chillai.space/p/<slug>
  • Portal at https://chillai.space/portal?key=YOUR_API_KEY — admin dashboard to browse, preview, and manage all your published pages
  • API key lives in ~/.config/instant-publish/config.json
  • No database, no accounts — just a key and your content

Why not PDF?

PDF takes 12 seconds to generate. HTML takes 0.4 seconds. PDF needs a viewer. HTML needs a browser you already have open. PDF is an email attachment. HTML is a link.

Read the full investigation

License

MIT