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

svcx-deploy

v1.0.4

Published

Create a SvelteKit + Convex + Vercel app in one command

Readme

SVCX

I've been using the same stack on every project for a while now. I love using SvelteKit + Convex. I also like to deploy my side projects to vercel. When starting a new project, it's good practice to also deploy a bare-bones app right away.

https://www.seanclark.dev/projects/svcx-deploy

With that said, this utility scaffolds out Sveltekit + convex + deploy to vercel with GitHub linked for push-to-main deploy in (almost) 1 step.

You still have to paste your convex deploy key, but that's all.

npx svcx-deploy my-app

What it does

  1. Creates a SvelteKit app (minimal template, TypeScript, Prettier, ESLint, Vercel adapter, Claude MCP)
  2. Initializes git and creates a private GitHub repo
  3. Installs convex and convex-svelte, writes convex.json
  4. Runs npx convex dev so you can authenticate and create your Convex project
  5. Writes src/routes/+layout.svelte with Convex initialized
  6. Links the project to Vercel and connects the GitHub repo for auto-deploys
  7. Deploys Convex to production
  8. Sets the required Vercel environment variables
  9. Pushes to GitHub and triggers a live Vercel deployment

Prerequisites

All of the following must be installed and authenticated before running:

| Tool | Install | Auth | | -------------- | -------------------------------- | --------------------- | | Node.js 18+ | nodejs.org | — | | GitHub CLI | brew install gh | gh auth login | | Vercel CLI | npm i -g vercel | vercel login | | Convex account | — | Prompted during setup |

Usage

npx svcx-deploy my-app

What's automated vs manual

Almost everything is automated. The one step that requires manual action:

  • Convex production deploy key — after npx convex deploy runs, you'll be prompted to copy a key from the Convex dashboard (Settings → Deploy Keys → Generate Production Deploy Key). Paste it into the terminal and setup continues automatically. The key is saved to .env.local so re-runs skip this step.

Environment variables set in Vercel

| Variable | Source | | ------------------------ | ---------------------------------------------- | | PUBLIC_CONVEX_URL | Read from .env.local after convex dev | | PUBLIC_CONVEX_SITE_URL | Read from .env.local after convex dev | | CONVEX_DEPLOY_KEY | Pasted once from Convex dashboard, then cached |

Contributing

git clone https://github.com/optikalefx/svelte-convex-vercel-starter
cd svelte-convex-vercel-starter
npm install
npm run dev my-app