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 🙏

© 2025 – Pkg Stats / Ryan Hefner

deepdish

v0.9.0

Published

DeepDish command line application

Readme

DeepDish CLI

The DeepDish command line interface (CLI) provides a powerful way to interact with DeepDish Cloud services directly from your terminal.

Installation

npx deepdish [command]
# or
pnpx deepdish [command]
# or
yarn dlx deepdish [command]
# or
bunx deepdish [command]

Requirements

  • Node.js >= 22
  • Internet connection for cloud operations

Getting Started

1. Create an Account

If you don't have a DeepDish account yet, create one:

deepdish cloud auth signup

This will open your browser to complete the signup process.

2. Log In

If you already have an account, log in:

deepdish cloud auth login

3. Create Your First Project

Create a new project to get started:

deepdish cloud project create --name "my-awesome-project"

4. Select Your Project

Choose which project to work with:

deepdish cloud project select

Available Commands

Global Commands

| Command | Description | |---------|-------------| | deepdish --help | Show help information | | deepdish --version | Show version information |

Cloud Commands

The CLI is organized around cloud operations. All cloud-related commands are under the cloud namespace.

Authentication (cloud auth)

Manage your DeepDish Cloud account authentication.

| Command | Description | |---------|-------------| | deepdish cloud auth login | Log in with an existing account | | deepdish cloud auth logout | Log out of your current account | | deepdish cloud auth signup | Create a new account |

Examples:

# Log in to your account
deepdish cloud auth login

# Create a new account
deepdish cloud auth signup

# Log out
deepdish cloud auth logout

Project Management (cloud project)

Manage your DeepDish Cloud projects.

| Command | Description | |---------|-------------| | deepdish cloud project create --name <name> | Create a new project | | deepdish cloud project list | List all of your projects | | deepdish cloud project select | Select a project to be your active one |

Examples:

# Create a new project
deepdish cloud project create --name "my-project"

# List all projects
deepdish cloud project list

# Select a project to work with
deepdish cloud project select

Project Keys (cloud project key)

Manage API keys for your projects.

| Command | Description | |---------|-------------| | deepdish cloud project key create | Create a new API key for the current project |

Examples:

# Create a new API key
deepdish cloud project key create

Billing (cloud billing)

Manage your billing and subscription.

| Command | Description | |---------|-------------| | deepdish cloud billing open | Open the billing page in your browser |

Examples:

# Open billing page
deepdish cloud billing open

Command Structure

The DeepDish CLI follows a hierarchical command structure:

deepdish [command] [subcommand] [options]

Command Groups

  • cloud - All cloud-related operations
    • auth - Authentication and account management
    • project - Project management
      • key - API key management
    • billing - Billing and subscription management

Getting Help

Command Help

Get help for any command or subcommand:

deepdish --help
deepdish cloud --help
deepdish cloud auth --help
deepdish cloud project --help

Interactive Selection

Many commands provide interactive interfaces for better user experience. For example, when selecting a project, you'll see a list of available projects to choose from.

Environment Variables

The CLI automatically handles environment configuration for different environments (development, staging, production).

Troubleshooting

Common Issues

  1. Authentication Errors

    • Ensure you're logged in: deepdish cloud auth login
    • Check your internet connection
  2. Project Not Found

    • List your projects: deepdish cloud project list
    • Select the correct project: deepdish cloud project select
  3. Permission Errors

    • Ensure you have the necessary permissions for the project
    • Contact your project administrator if needed

Getting Support

If you encounter issues not covered here:

  1. Check the DeepDish documentation
  2. Contact us at [email protected]

Version History

See CHANGELOG.md for detailed version history and release notes.

Contributing

The DeepDish CLI is open source. Contributions are welcome! Please see the main DeepDish repository for contribution guidelines.

License

This project is licensed under the terms specified in the main DeepDish repository.