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

@solcreek/cli

v0.4.21

Published

CLI for the Creek deployment platform

Readme

creek

Deploy to the edge in seconds. No account required.

npm License

npx creek deploy --template landing
# Live in 8.3s -> https://a1b2c3d4.creeksandbox.com

Creek is the CLI for the Creek deployment platform -- an open-source, Cloudflare-native alternative to Vercel. Built on Workers for Platforms.

Also available as ck and crk.

Install

npm install -g creek

Or use directly with npx:

npx creek deploy

Quick Start

Start from a template (no account needed)

creek deploy --template landing

Clones a ready-made Vite + React landing page, builds it, and deploys it to a 60-minute sandbox URL — all in one command. The code is yours to edit.

Deploy your project

cd my-vite-app
creek deploy

Creek auto-detects your framework, runs the build, and deploys to a sandbox preview (60 min).

Deploy a directory

creek deploy ./dist

Deploy from a repo URL

creek deploy https://github.com/user/repo
creek deploy https://github.com/user/repo/tree/main/packages/app

Commands

| Command | Description | |---------|-------------| | creek deploy [dir] | Deploy project, directory, or repo URL | | creek deploy --template <name> | Clone + build + deploy a named template | | creek deploy --dry-run | Show the deploy plan without executing (agent-safe) | | creek projects | List your projects | | creek deployments | List deployments for a project | | creek logs | Read recent log entries (R2 archive) | | creek logs --follow | Live tail via WebSocket until Ctrl+C | | creek logs --outcome exception | Filter by tail outcome (or --deployment, --branch, --level, --search) | | creek status | Show current project status | | creek login | Authenticate with Creek | | creek login --token <key> | Authenticate in CI/CD (non-interactive) | | creek init | Create creek.toml configuration | | creek claim <id> | Convert sandbox preview to permanent project | | creek env set <key> <val> | Set an environment variable | | creek env ls | List environment variables | | creek env rm <key> | Remove an environment variable | | creek whoami | Show current authenticated user |

Global Flags

Every command supports these flags:

| Flag | Description | |------|-------------| | --json | Output structured JSON (auto-enabled in non-TTY environments) | | --yes | Skip confirmation prompts (auto-enabled in non-TTY environments) |

For AI Agents

Creek is designed for programmatic use. No CAPTCHAs, no interactive prompts in CI.

Structured output

creek deploy ./dist --json
{
  "ok": true,
  "sandboxId": "a1b2c3d4",
  "url": "https://a1b2c3d4.creeksandbox.com",
  "deployDurationMs": 9234,
  "expiresAt": "2026-03-27T16:00:00.000Z",
  "assetCount": 12,
  "mode": "sandbox"
}

Non-TTY auto-detection

When running in pipes, CI/CD, or agent environments (no TTY), the CLI automatically:

  • Outputs JSON instead of human-readable text
  • Skips all confirmation prompts
  • Uses exit codes for success (0) and failure (1)
# These are equivalent in CI:
creek deploy ./dist --json --yes
creek deploy ./dist  # auto-detects non-TTY

MCP Server

Creek provides a remote MCP server at mcp.creek.dev for AI agent integration. See the MCP documentation for details.

HTTP API

Deploy without installing the CLI:

curl -X POST https://sandbox-api.creek.dev/api/sandbox/deploy \
  -H "Content-Type: application/json" \
  -d '{
    "assets": { "index.html": "<base64>" },
    "source": "my-agent"
  }'

No API key required for sandbox deploys. See the API documentation for details.

Supported Frameworks

Creek auto-detects and configures the build for:

  • Next.js
  • Vite (React, Vue, Svelte, Solid)
  • Astro
  • SvelteKit
  • Nuxt
  • TanStack Start
  • React Router
  • Any static site

Deploy Modes

| Mode | Trigger | Auth Required | TTL | |------|---------|:-------------:|-----| | Template | --template <name> | No | 60 min | | Sandbox | No creek.toml | No | 60 min | | Production | Has creek.toml + token | Yes | Permanent |

Configuration

Create creek.toml with creek init, or skip it entirely -- Creek works with zero config.

[project]
name = "my-app"
framework = "vite-react"

[build]
command = "npm run build"
output = "dist"

Links

License

Apache 2.0 -- see LICENSE.