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

primo-cli

v0.1.3

Published

Local development CLI for Primo

Readme

Primo CLI

Local development CLI for Primo - build and edit sites with a visual CMS.

Installation

npm install -g primo-cli

Quick Start

# Create a new site
primo new my-site

# This starts the local CMS automatically
# Edit at: http://my-site.localhost:3000/admin/site
# Preview at: http://my-site.localhost:3000/

Commands

primo new [name]

Create a new site with starter files.

primo new                    # Interactive prompt for name
primo new my-site            # Create "my-site" directory
primo new --skip-dev         # Create files without starting CMS

primo dev

Start the local CMS server. Watches for file changes and syncs edits from the CMS back to local files.

primo dev                    # Start in current directory
primo dev -p 8080            # Use custom port

primo push

Push local files to a hosted Primo instance.

primo push -s https://cms.example.com --site abc123
primo push --preview         # Preview changes without applying

Options:

  • -s, --server <url> - Server URL
  • --site <id> - Site ID
  • -d, --dir <dir> - Directory (default: .)
  • -t, --token <token> - Auth token
  • --preview - Preview only

primo pull

Pull from a hosted Primo instance to local files.

primo pull -s https://cms.example.com
primo pull --site abc123 -o ./my-site

Options:

  • -s, --server <url> - Server URL (auto-detects local)
  • --site <id> - Site ID (interactive if not provided)
  • -o, --output <dir> - Output directory (default: .)
  • -t, --token <token> - Auth token

primo login

Authenticate with a hosted Primo instance.

primo login https://cms.example.com
primo login https://cms.example.com -e [email protected]

primo publish

Deploy your site with CMS to Railway or Fly.io.

primo publish                # Interactive provider selection
primo publish -p railway     # Deploy to Railway
primo publish -p fly         # Deploy to Fly.io

primo validate

Check site structure for errors.

primo validate
primo validate --strict      # Strict mode

primo build

Build static HTML site for deployment to any static host.

primo build                  # Output to ./dist
primo build -o ./public      # Custom output directory

Deploy the output anywhere:

# Netlify
npx netlify deploy --prod --dir=dist

# Vercel
npx vercel dist

# Cloudflare Pages
npx wrangler pages deploy dist

# Or just push to a repo connected to any static host

Site Structure

my-site/
├── primo.json          # Site config (name, site_id, host)
├── blocks/             # Svelte components
│   └── hero/
│       ├── component.svelte
│       ├── fields.json
│       └── content.yaml
├── pages/              # Page content (YAML)
│   └── index.yaml
├── page-types/         # Page templates
│   └── default/
│       └── config.json
├── site/               # Site-wide settings
│   ├── fields.json
│   ├── content.yaml
│   └── head.svelte
└── uploads/            # Media files

Multiple Sites

Run primo dev from a parent folder to work on multiple sites at once:

workspace/
├── server.json         # Optional: { "port": 3000 }
├── site-one/
│   └── primo.json
└── site-two/
    └── primo.json

Each site gets its own subdomain: site-one.localhost:3000, site-two.localhost:3000

Documentation

Full documentation: primo.page/docs

Requirements

  • Node.js 18+
  • For primo publish: Railway CLI or Fly.io CLI