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

vmlive

v1.0.24

Published

Local development VM for custom Serverless PaaS

Readme

@vmlive/cli

Local emulation sandbox, deployment CLI, and AI Edge toolkit for vm.live.

This CLI provides a local development environment for serverless edge functions running on vm.live, including local emulation for DB, KV, Bucket storage, and Native AI capabilities.

Installation

You do not need to install the CLI globally. It can be run directly via npx:

npx vmlive [command]

Commands

npx vmlive login

Authenticates the CLI with your vm.live account via PKCE OAuth. Saves the access token to ~/.vm-config.json.

npx vmlive init

Scaffolds a new project in the current directory.

  • Prompts for Workspace and Project selection.
  • Generates vm.json (configuration manifest) and dynamically scopes your first endpoint to src/.
  • Installs @vmlive/types and configures TypeScript.

npx vmlive add

Interactively scaffolds additional serverless endpoints natively into your src/ directory, immediately mapping them into your vm.json so the local proxy and production Gatekeeper seamlessly route to your independent microservices.

npx vmlive dev

Starts the local emulation environment.

  • Iteratively hosts your entire multi-function footprint locally via predictable slugs: http://<workspace_id>-<project_id>-<function_name>.localhost:8787.
  • Local Dashboard: Automatically spawns a web dashboard at http://dashboard.localhost:8787 for visualizing offline databases, global KV, and Object Storage.
  • Provides local proxy bindings for your SQL Database (env.DB), Global KV (env.KV), Object Storage (env.BUCKET), and AI/Memory Models (env.AI) using the .vmlive/ directory for persistent storage.
  • Supports hot-reloading for .js and .ts files.

npx vmlive deploy

Uploads the local code to the vm.live edge platform.

  • Bundles the code using esbuild.
  • Evaluates and injects environment variables from .env and .env.production.

npx vmlive db push [local|remote]

Orchestrates Zero-Config declarative D1 schema migrations.

  • Discovers raw .sql files within the migrations/ folder at the root of your project.
  • local: Evaluates files headless locally completely mirroring Cloudflare's Edge V8 SQLite dialect.
  • remote: Natively routes your SQL to Gatekeeper to provision schema into the physical Cloudflare global footprint.

AI / LLM Tooling Setup

If you are using an AI assistant (such as Cursor, Copilot, or Aider) to write code, provide it with the platform context to ensure it adheres to the V8 Isolate execution model and uses the correct infrastructure bindings.

Instructions:

  1. Download the rules seamlessly via the API directly into your local root footprint: curl -O https://api.vm.live/vmlive-ai-rules.md
  2. Configure your AI Assistant (e.g. Cursor, Copilot) to ingest this manifest so it dynamically enforces the strict PaaS architectural primitives across your local logic scope!