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

@atom-forge/env-reader

v0.1.0

Published

Type-safe environment variable reader for TypeScript

Readme

@atom-forge/env-reader

Type-safe environment variable reader for TypeScript. Reads, parses, and validates environment variables at startup — so your app fails fast if the environment is misconfigured, not at runtime.

Installation

npm install @atom-forge/env-reader

Usage

import { EnvReader, asReadonly } from "@atom-forge/env-reader";
import path from "path";

const env = new EnvReader(path.resolve(__dirname, "../"));

const config = asReadonly({
    app: {
        env: env.oneOf("APP_ENV", ["dev", "prod", "test"], "prod"),
    },
    database: {
        connectionString: env.string("DATABASE_URL"),
        maxPool: env.int("DB_POOL_MAX", 20),
    },
    auth: {
        secret: env.string("JWT_SECRET"),
        expiresIn: env.int("JWT_EXPIRATION", 60 * 60 * 8),
    },
});

API

new EnvReader(projectRoot: string)

Instantiate with an absolute path to the project root. Used for resolving file() and dir() paths.

Methods

| Method | Returns | Description | |---|---|---| | string(key, default?, trim?) | string | Reads a string. Trims whitespace by default. | | int(key, default?, radix?) | number | Parses an integer. Radix defaults to 10. | | float(key, default?) | number | Parses a floating-point number. | | boolean(key, default?) | boolean | Parses true/false, yes/no, 1/0 (case-insensitive). | | url(key, default?) | URL | Validates and returns a URL object. | | regex(key, default?) | RegExp | Validates and returns a RegExp object. | | oneOf(key, values, default?) | T | Validates the value is one of the allowed strings. | | list(key, parser, default?, separator?) | T[] | Splits by separator (default ,) and parses each item. | | file(key, default?, onMissing?, stayInProject?) | string | Resolves an absolute file path. | | dir(key, default?, onMissing?, stayInProject?) | string | Resolves an absolute directory path. |

If a variable is missing and has no default, the method throws immediately.

asReadonly<T>(value: T): DeepReadonly<T>

Wraps a config object in a DeepReadonly type. Zero runtime cost — pure TypeScript type cast.

const config = asReadonly({ db: { host: "localhost" } });
config.db.host = "other"; // TS error

list example

// ALLOWED_PORTS=80,443,3000
const ports = env.list("ALLOWED_PORTS", v => parseInt(v, 10));
// → [80, 443, 3000]

file / dir parameters

  • onMissing: true (default) throws on missing path, false returns the path silently, or a (path) => void callback.
  • stayInProject: true (default) prevents path traversal outside the project root.