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

@procyon-creative/procyon-wp

v1.0.3

Published

WordPress development CLI for database syncing, file transfers, and environment management

Downloads

550

Readme

Procyon CLI

A WordPress development toolkit that automates database syncing, file transfers, and environment management between local, staging, and live environments.

Installation

npm install -g @procyon-creative/procyon-wp

Or check out the repo and run:

npm link

Quick Start

New project

procyon init

Interactive wizard that creates a project config at ~/.procyon/projects/<name>.json and a .procyon link file in your project directory.

Migrating from .env

procyon migrate

Imports an existing .env file into the new config format.

Commands

File Transfers

# Pull uploads from staging
procyon files pull staging uploads

# Pull all file types (themes, plugins, uploads)
procyon files pull staging all

# Pull a single theme
procyon files pull staging themes --name flavor

# Push themes to staging (shows diff preview, creates backup)
procyon files push staging themes

# Push a single plugin, skip confirmation
procyon files push staging plugins --name my-plugin --force

# Preview what would change without transferring
procyon files push staging themes --dry-run

# Push without creating a backup
procyon files push live themes --no-backup

Rollback

# List available backups
procyon files rollback staging themes --list

# Restore from a specific backup
procyon files rollback staging themes --to 2024-01-15T10-30-00

Database

# Pull remote database, import locally, search-replace domains
procyon db pull staging

# Push local database to remote (prompts for confirmation)
procyon db push staging

# Push without confirmation
procyon db push staging -y

Plugin Install

# Install plugins from a CSV file
procyon plugin-install staging plugins.csv

Project Management

procyon projects list          # List all registered projects
procyon projects show          # Show current project config
procyon projects remove --name my-site

Configuration

Project configs live at ~/.procyon/projects/<name>.json:

{
  "name": "my-site",
  "localPath": "/Users/you/Sites/my-site/public",
  "localDomain": "my-site.local",
  "wpCli": "wp",
  "environments": {
    "staging": {
      "host": "staging.example.com",
      "user": "deploy",
      "port": 22,
      "path": "/var/www/html",
      "domain": "staging.example.com",
      "identityFile": "~/.ssh/my-key"
    },
    "live": {
      "host": "live.example.com",
      "user": "deploy",
      "port": 22,
      "path": "/var/www/html",
      "domain": "live.example.com",
      "identityFile": "~/.ssh/my-key"
    }
  }
}

Each project directory contains a .procyon link file pointing to the config:

{
  "project": "my-site"
}
  • localDomain / domain: Used for database search-replace during db pull and db push.
  • identityFile: SSH key path. Supports ~ for home directory.
  • wpCli: Set to "lando wp" for Lando-based projects.

Development

pnpm install
npm test
npm run lint
node index.js <command> [options]