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

@triplehost/cli

v0.4.2

Published

CLI for Triple: Production, drafts, structured data; optional vault on triple.host

Readme

Triple

A modern way to safely backup and store codebases.

{ Production Code + Infinite Drafts + Structured Data }

Website: triple.host
How it works: WORLD.md (also bundled here)
Agents: triple agent or AgentWelcome.md

Every command ends with a receipt: triple: ok|refused|error <op> … (exit 0 / 2 / 1).


Get started

npm install -g @triplehost/cli
triple login
cd ~/Desktop/MyProject
triple new

| Command | What it does | | --- | --- | | npm install -g @triplehost/cli | Install the tool | | triple login | Sign in with email. One-time code. | | triple login --browser | Open triple.host; CLI waits. (Agent-friendly.) | | triple login --email [email protected] | Send code; wait for paste. (Agent-friendly.) | | triple new | Run in your project folder. Creates a .triple sidecar. That folder is Production. |


Drafts

triple draft
# edit the draft folder beside Production
triple makeprod draft-a
triple undo

| Command | What it does | | --- | --- | | triple draft | Next draft beside Production. Letter is automatic. | | triple makeprod draft-a | Turns that draft into Production. Previous Production is stored for rollback if needed. | | triple undo | Undo the last local step. Use again to go further. |

Also: triple drafts, triple rename draft-a name, triple discard draft-a (never Production).
Run draft commands from the Production folder.


Structured data

Drop files into .triple/structured/ (txt, md, json, …). No special layout required — they become an indexed part of the Triple.

triple reconcile   # refresh index (+ keep drafts lined up with Production)
triple watch       # do that automatically when folders change

Remote vault (triple.host)

triple backup
triple releases
triple rollback
triple list
triple clone myproject ~/Desktop/MyProject-copy

| Command | What it does | | --- | --- | | triple backup | Save to your vault (new current release; last 10 kept) | | triple releases | List release history | | triple rollback [at] | Make a previous release current (vault only — not your disk) | | triple clone | Get current release onto disk (empty path) | | triple clone … --replace-local | Replace this folder with the current release (explicit human approval) |

Local undo and vault rollback are separate. Backup refuses when the vault is newer unless a human passes --replace-vault.

Credentials: ~/.config/triple/credentials.json


Building this tool

cd triple_cli
npm install
npm link
npm publish

Questions → commands: FAQ.md
How it works: WORLD.md