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

@nuvemlatam/cli

v0.1.0

Published

Nuvem CLI — edge-native BaaS on Cloudflare

Downloads

69

Readme

@nuvemlatam/cli

CLI oficial de Nuvem — el Backend-as-a-Service edge-native sobre Cloudflare.

Semana 1: solo dos comandos — init y status. El CLI apunta al API control-plane corriendo en apps/api.

Comandos

nuvem init <name>

Crea un nuevo proyecto Nuvem en el directorio actual, registra el proyecto en el API, genera una API key inicial y la guarda en .env.local.

nuvem init demo --local

Flags:

  • --local — usar el API en http://localhost:8787 (default: https://api.nuvem-latam.com)
  • --force — sobreescribir .nuvem/ y .env.local si ya existen

Archivos generados:

  • .nuvem/config.json — metadata del proyecto (id, nombre, apiUrl)
  • .env.localNUVEM_API_KEY, NUVEM_PROJECT_ID, NUVEM_API_URL

La API key se muestra una sola vez. Guardala en tu gestor de secretos.

nuvem status

Verifica conectividad con el API y muestra el estado del proyecto.

nuvem status --local

Hace un GET /health (con latencia) y un GET /v1/projects/<id> autenticado con la key guardada en .env.local.

Desarrollo

# Desde la raíz del monorepo
pnpm --filter @nuvemlatam/cli build
pnpm --filter @nuvemlatam/cli dev      # watch mode

# Correr el binario compilado
node packages/cli/dist/cli.js init demo --local
node packages/cli/dist/cli.js status --local

Stack

  • Node.js >= 22, ESM
  • TypeScript strict
  • commander — parsing de args
  • picocolors — colores
  • prompts — confirmaciones interactivas
  • tsup — bundler ESM con shebang

Errores

Los mensajes de error son bilingües (ES/PT) porque Nuvem es LATAM-first. El cliente muestra primero español, después portugués en gris.

Week 1 scope

  • No hay comando login todavía — la primera API key se genera sin auth durante init.
  • El dominio api.nuvem-latam.com no está desplegado. Usá --local mientras corrés apps/api con wrangler dev.
  • Tests llegan en Week 2.