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

@shuffle-dev/cli

v1.0.3

Published

Shuffle Editor CLI tool

Readme

Shuffle CLI

Command-line tool for managing projects in Shuffle Editor

Shuffle CLI is a simple tool that lets you download, edit, and sync projects from Shuffle Editor directly from your terminal. No manual installation is required - everything works through npx!

🚀 Getting Started

Option 1: Run from npm (recommended):

npx @shuffle-dev/cli --help

Option 2: Run directly from GitHub:

npx https://github.com/shuffle-dev/cli --help

Option 3: Install globally:

npm install -g @shuffle-dev/cli
shuffle --help

💡 The CLI automatically detects how it was installed and shows appropriate usage instructions:

  • When using npx, it shows "Usage: npx @shuffle-dev/cli [command]"
  • When installed globally, it shows "Usage: shuffle [command]"

📋 Available Commands

Note: In all examples below, you can replace npx @shuffle-dev/cli with:

  • npx @shuffle-dev/cli (if running from npx)
  • shuffle (if installed globally)

Authentication

Sign in to your Shuffle account:

npx @shuffle-dev/cli auth

After running this command, your browser will open automatically, allowing you to complete the login process.

Sign out:

npx @shuffle-dev/cli logout

Project Management

List all your Shuffle projects:

npx @shuffle-dev/cli projects

List projects downloaded locally:

npx @shuffle-dev/cli list

Download a project:

npx @shuffle-dev/cli get PROJECT_ID

Download to a specific location:

npx @shuffle-dev/cli get PROJECT_ID ./my-project

Sync changes from Shuffle to your local copy:

npx @shuffle-dev/cli sync PROJECT_ID

Interactive sync (choose a project from the list):

npx @shuffle-dev/cli sync

Project Status & Maintenance

Check current directory project status:

npx @shuffle-dev/cli status

Clean up invalid project locations:

npx @shuffle-dev/cli cleanup

⭐ Typical Workflow

  1. Sign in: npx @shuffle-dev/cli auth
  2. Check your projects: npx @shuffle-dev/cli projects
  3. Download a project: npx @shuffle-dev/cli get PROJECT_ID
  4. Check project status: npx @shuffle-dev/cli status
  5. Edit project in Shuffle
  6. Sync changes to your local copy: npx @shuffle-dev/cli sync PROJECT_ID

💡 Pro Tips

  • Use npx @shuffle-dev/cli sync without PROJECT_ID for interactive project selection
  • Use npx @shuffle-dev/cli list to see what projects you have downloaded locally
  • Use npx @shuffle-dev/cli status to check if you're in a Shuffle project directory
  • Use npx @shuffle-dev/cli cleanup to remove references to deleted project folders

💻 Requirements

  • Node.js version 14.0.0 or higher
  • Web browser for authentication

🔧 Troubleshooting

"shuffle: command not found" error

If you see this error, be sure to:

  • You're using npx - always use the full command: npx @shuffle-dev/cli COMMAND
  • Or install globally: npm install -g @shuffle-dev/cli then use shuffle COMMAND

Authentication Issues

  • Check if your browser is blocking popup windows
  • Make sure ports 8080-8085 on localhost are available

Connection Issues

  • Check your internet connection
  • Check firewall settings

File Issues

  • Make sure you have write permissions in the target folder
  • Check if you have enough disk space

Help

Have questions or problems? Contact the Shuffle team ([email protected]) or report an issue in the project repository.