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

@turboops/cli

v1.0.95

Published

TurboCLI - Command line interface for TurboOps deployments

Readme

TurboCLI

Command line interface for TurboOps.

Installation

# Global installation
pnpm add -g @turboops/cli

# Or use with pnpm dlx
pnpm dlx @turboops/cli

Usage

Authentication

# Login interactively (opens browser)
turbo login

# Login with token (for CI/CD)
turbo login --token <your-api-token>

# Check current user
turbo whoami

# Logout
turbo logout

Project Setup

# Initialize project in current directory
# Prompts for stage selection (dev, test, preview, prod)
turbo init

# Show current configuration
turbo config show

# Set configuration value
turbo config set project <slug>

# Get configuration value
turbo config get project

# Clear configuration
turbo config clear --all
turbo config clear --token
turbo config clear --project

Status

# Show status of all environments
turbo status

# Show status of specific environment
turbo status production

Logs

# View logs
turbo logs production

# Follow logs (stream)
turbo logs production --follow

# Limit lines
turbo logs production --lines 50

# Filter by service
turbo logs production --service api

Deployment (CI/CD)

The deploy command is designed for CI/CD pipelines using Project Tokens.

# Trigger deployment and wait for completion (default)
turbo deploy production

# Deploy specific image tag
turbo deploy production --image my-app:v1.2.3

# Deploy without waiting (fire-and-forget)
turbo deploy staging --no-wait

# Custom timeout (default: 10 minutes)
turbo deploy production --timeout 900000

Options:

| Option | Description | | ------------------- | ------------------------------------------------------ | | -i, --image <tag> | Docker image tag to deploy | | -w, --wait | Wait for deployment to complete (default) | | --no-wait | Do not wait for deployment to complete | | --timeout <ms> | Timeout in milliseconds when waiting (default: 600000) |

Note: This command requires a Project Token with deploy permission. Set the token via TURBOOPS_TOKEN environment variable or --token flag.

Docker Setup

Generate Docker configuration (docker-compose.yml, Dockerfiles, .dockerignore) using AI.

# Generate Docker setup interactively
turbo docker generate

# Force overwrite existing Docker files
turbo docker generate --force

Options for docker generate:

| Option | Description | | ------------- | ------------------------------- | | -f, --force | Overwrite existing Docker files |

Pipeline Management

Generate and manage CI/CD pipeline configurations.

# Generate pipeline interactively
turbo pipeline generate

# Generate GitLab CI pipeline
turbo pipeline generate --type gitlab

# Generate GitHub Actions pipeline
turbo pipeline generate --type github

# Force overwrite existing pipeline
turbo pipeline generate --type gitlab --force

# Custom output path
turbo pipeline generate --type gitlab --output ./ci/pipeline.yml

# Show required secrets
turbo pipeline secrets

# Show secrets for specific pipeline type
turbo pipeline secrets --type github

Options for pipeline generate:

| Option | Description | | --------------------- | ----------------------------------- | | -t, --type <type> | Pipeline type: gitlab or github | | -f, --force | Overwrite existing pipeline file | | -o, --output <path> | Custom output path |

Self-Update

# Check for updates and show upgrade instructions
turbo self-update

Environment Variables

| Variable | Description | | ------------------ | ------------------------------------------ | | TURBOOPS_TOKEN | API token for authentication | | TURBOOPS_PROJECT | Project slug | | TURBOOPS_API_URL | API URL (default: https://api.turboops.io) |

Global Options

--project <slug>      Override project slug
--token <token>       Override API token
--json                Output as JSON
--quiet               Only show errors
--verbose             Show debug output
--no-update-check     Skip version check

Exit Codes

| Code | Description | | ---- | -------------------- | | 0 | Success | | 1 | General error | | 2 | Timeout | | 3 | Network error | | 10 | Authentication error | | 11 | Not found | | 12 | API error | | 20 | Validation error |

License

MIT