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

@craveup/cli

v1.0.0

Published

CraveUp CLI to bootstrap storefront templates

Readme

CraveUp CLI

Bootstrap a CraveUp storefront from one of our opinionated templates.

Usage

npx craveup init

You will be guided through:

  • selecting the Tomodashi Sushi template (additional templates coming soon)
  • entering your CraveUp API key (or pass it via --api-key)
  • capturing the storefront's location ID when required
  • cloning the template and preparing a clean workspace
  • installing dependencies with the detected package manager
  • optionally starting the development server immediately so you can preview the storefront right away

Non-interactive flags

  • --template <id> – select a template by id (tomodashi-sushi)
  • --dir <name> – specify the target directory
  • --api-key <key> – prefill the API key prompt
  • --skip-install – skip installing dependencies (CLI will print the command to run manually)
  • --force – overwrite an existing empty directory without prompting (useful for reruns)

Environment variables

The CLI talks to the partner dashboard and API. Override the defaults when pointing at non-production environments:

  • CRAVEUP_DASHBOARD_URL (default: https://partners.craveup.com)
  • CRAVEUP_PARTNER_API_URL (default: https://partners-api.craveup.com)

During project setup the CLI writes credentials to your storefront's environment file:

  • NEXT_PUBLIC_API_KEY – the key you provide during setup
  • NEXT_PUBLIC_LOCATION_ID – only when the selected template requires a location scope
  • NODE_ENV, NEXT_PUBLIC_API_URL, NEXT_PUBLIC_STRIPE_PUBLISHABLE_KEY, NEXT_PUBLIC_GOOGLE_MAPS_API_KEY, VERCEL_URL – seeded with default values for the Tomodashi Sushi template (edit as needed after setup)

Templates registry

Template metadata lives in src/templates.ts. Update the repository URLs or add new templates as they become available.

Development

pnpm --filter craveup build

The compiled entry point is emitted to dist/cli.js and exposed via the craveup binary defined in package.json.