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

confg-sdk

v0.1.8

Published

SDK for confg.dev - Config as a Service

Readme

confg-sdk

SDK for confg.dev - Config as a Service.

Git is the source of truth. Configs are synced via GitHub Action on push to main, ensuring full history tracking and no uncommitted changes in production.

Installation

npm install confg-sdk

Quick Start

Runtime Client (Read-Only)

import { Confg } from 'confg-sdk'

const confg = new Confg({
  projectId: 'my-project',
  apiKey: process.env.CONFG_API_KEY, // Optional - only needed for protected configs
})

// Read config
const userSchema = await confg.get('entities/user')

// Read with TypeScript type
const config = await confg.get<{ name: string; version: number }>('settings/app')

// List all configs
const paths = await confg.list()

// Check if config exists
const exists = await confg.exists('entities/user')

CLI (Inspection Only)

# Initialize confg.json for GitHub Action
npx confg init

# List all configs in the project
npx confg list

# Get and display a single config
npx confg get entities/user

Syncing Configs

Configs are synced only via GitHub Action on push to main. This ensures:

  • Git remains the single source of truth
  • Full history tracking of all changes
  • No uncommitted/local changes in production
  • Code review before config changes go live

Setup GitHub Action

  1. Create your config files in a directory (e.g., ./configs/):
configs/
├── entities/
│   ├── user.json
│   └── company.json
└── settings/
    └── app.json
  1. Add the workflow to your repo:
# .github/workflows/sync-configs.yml
name: Sync Configs

on:
  push:
    branches: [main]
    paths:
      - 'configs/**'

jobs:
  sync:
    uses: confg/confg-sdk/.github/workflows/sync.yml@main
    with:
      sync-dir: './configs'
      prune: true  # Optional: delete configs not in repo
    secrets:
      CONFG_API_KEY: ${{ secrets.CONFG_API_KEY }}
      CONFG_PROJECT_ID: ${{ secrets.CONFG_PROJECT_ID }}
  1. Add secrets in your repo settings:
    • CONFG_API_KEY - Create a key with write permission in confg.dev dashboard
    • CONFG_PROJECT_ID - Your project slug

API Keys

There are two types of API keys:

| Permission | Use Case | |------------|----------| | write | GitHub Action sync - pushes configs from repo to API | | read | Runtime client - reads protected configs (configs with cnfg:auth: true) |

Create separate keys for each use case in the confg.dev dashboard. The write key should only be stored in GitHub Secrets, never in your codebase.

Configuration

confg.json

Optional file for CLI project context:

{
  "projectId": "my-project",
  "syncDir": "./configs"
}

Environment Variables

  • CONFG_PROJECT_ID - Project ID (overrides confg.json)
  • CONFG_API_KEY - API key for protected configs
  • CONFG_BASE_URL - Custom API URL (default: https://i.confg.dev)

Auth Control

Project-level (cnfg.json in configs root)

{
  "auth": true,
  "secureRoutes": ["secrets/*", "internal/*"]
}

File-level

Add "cnfg:auth": true to any config to require API key for reading:

{
  "cnfg:auth": true,
  "apiKey": "sk-secret..."
}

The cnfg:* fields are automatically stripped from responses.

License

MIT