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

@revealui/config

v0.2.0

Published

Environment configuration management for RevealUI - type-safe environment variables with Zod validation.

Readme

@revealui/config

Environment configuration management for RevealUI - type-safe environment variables with Zod validation.

Features

  • Type-safe: Full TypeScript support with Zod validation
  • Environment detection: Automatically detects NODE_ENV
  • Dotenv loading: Loads .env files with priority
  • Validation: Validates all environment variables on load
  • MCP Configuration: Configuration management for MCP servers
  • RevealUI Config: RevealUI-specific configuration

Installation

pnpm add @revealui/config

Usage

Load Environment Configuration

import { loadConfig } from '@revealui/config'

// Load and validate environment variables
const config = loadConfig()

// Access validated config
console.log(config.database.url) // Type-safe access
console.log(config.stripe.secretKey)
console.log(config.vercel.token)

RevealUI Configuration

import { getRevealUIConfig } from '@revealui/config/revealui'

const config = getRevealUIConfig()
// Returns validated RevealUI configuration

MCP Configuration

import { getMCPConfig } from '@revealui/config/mcp'

const mcpConfig = getMCPConfig()
// Returns MCP server configuration

Environment Variables

The config package validates these environment variables:

Required Variables

# Database
POSTGRES_URL=postgresql://user:password@host/database

# RevealUI
REVEALUI_SECRET=your_secret_key_here
REVEALUI_PUBLIC_SERVER_URL=http://localhost:4000

Optional Variables

# Stripe
STRIPE_SECRET_KEY=sk_test_...
STRIPE_WEBHOOK_SECRET=whsec_...

# Vercel
VERCEL_API_KEY=vercel_...
BLOB_READ_WRITE_TOKEN=vercel_blob_...

# Neon
NEON_API_KEY=neon_...

# Supabase
SUPABASE_URL=https://....supabase.co
SUPABASE_ANON_KEY=eyJ...
SUPABASE_SERVICE_ROLE_KEY=eyJ...

File Loading Priority

Environment variables are loaded in this order (later overrides earlier):

  1. System environment variables
  2. .env (shared defaults, if present)
  3. .env.local (local overrides)
  4. .env.development.local (development mode)
  5. .env.production.local (production mode)

Validation

The package uses Zod schemas to validate configuration:

import { loadConfig } from '@revealui/config'

try {
  const config = loadConfig()
  // Config is valid and type-safe
} catch (error) {
  // Validation failed - missing or invalid variables
  console.error('Configuration error:', error)
}

Development

# Build package
pnpm --filter @revealui/config build

# Run tests
pnpm --filter @revealui/config test

# Type check
pnpm --filter @revealui/config typecheck

# Lint
pnpm --filter @revealui/config lint

Related Documentation

License

MIT