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 🙏

© 2024 – Pkg Stats / Ryan Hefner

typed-env-parser

v0.2.8

Published

Simple environment parser with full typescript inferring support

Downloads

1,842

Readme

Typed env parser

No dependency, micro library which help you to properly validate all environment variables. Library supports

  • Runtime JavaScript validation
  • Inferred static time Typescript validation
  • Beautiful error logging
  • Many different data types
  • Simply extends library with custom data type parser

Example usage

npm i typed-env-parser
import {
  getNumberFromEnvParser,
  getStringEnumFromEnvParser,
  getStringFromEnvParser,
  validateConfig,
} from "typed-env-parser";

export const appEnvs = validateConfig({
  PORT: getNumberFromEnvParser("PORT"),
  NODE_ENV: getStringEnumFromEnvParser("NODE_ENV", [
    "production",
    "development",
    "test",
  ] as const),

  postgres: {
    HOST: getStringFromEnvParser("POSTGRES_HOST"),
    PASSWORD: getStringFromEnvParser("POSTGRES_PASSWORD"),
    PORT: 5432,
  },

  some: {
    nestedKey: getStringFromEnvParser("ADMIN_SERVICE_URL", {
      pattern: "(http|https)://*.",
    }),
  },
});

Typescript preview

Philosophical part of the library

One source of truth

You have only 1 source of truth in your codebase. Thanks to Typescript inferring you can get static data type directly from the Javascript implementation (Like in the example upper).

No Default values

Default values for environment variables are anti-pattern. It may happen that you forget to add PORT in the production and your app silently fails and you have no idea why. So we recommend not to set default environment values in your Javascript codebase.

Batched runtime validator errors

If you don't define some of your variables or the env validation fails typed-env-parser will batch and show all error messages in one Error interruption.

Typescript preview

API

root module: typed-env-parser

basic value parsers

import { getNumberFromEnvParser } from 'typed-env-parser'
// ...
getNumberFromEnvParser: (envName: string)
import { getStringFromEnvParser } from 'typed-env-parser'
// ...
getStringFromEnvParser: (envName: string, config?: {
  allowEmptyString?: boolean | undefined;
  // regex pattern
  pattern?: string | undefined;
  transform?: ((value: string) => string) | undefined;
})
import { getStringEnumFromEnvParser } from 'typed-env-parser'
// ...
getStringEnumFromEnvParser: (envName: string, possibleEnumValues: string[], {
  allowEmptyString?: boolean | undefined;
})
import { getBoolFromEnvParser } from 'typed-env-parser'
// ...
getBoolFromEnvParser: (envName: string, config?: {
  allowEmptyString?: boolean | undefined
})
import { getBoolFromEnvParser } from 'typed-env-parser'
// ...
getListFromEnvParser: (
  envName: string,
  // default parser value is the `String`
  arrItemParser = () => T
)

Node.js specific module: typed-env-parser

this modules includes only parsers valid in the Node.js environment

import { getEnvFromFileParser } from 'typed-env-parser'
// ...
getEnvFromFileParser: (envName: string, required?: boolean)

Extensible API

Library brings simple extensible API on how to write custom parser function.

import { ValidationError, validateConfig } from "typed-env-parser";

// --- custom parser code starts ---
export const myCustomNumberRangeParser =
  (envName: string, from: number, to: number) => () => {
    const envValue = globalThis.process.env[envName]?.trim();
    const parsedNum = parseFloat(envValue ?? "");
    if (isNaN(parsedNum)) {
      throw new ValidationError("Value is not parsable as integer", envName);
    }
    if (parsedNum <= from || parsedNum >= to) {
      throw new ValidationError(
        `Value is not in the range <${from}, ${to}>`,
        envName
      );
    }
    return parsedNum;
  };
// --- custom parser code ends ---

export const appEnvs = validateConfig({
  PORT: myCustomNumberRangeParser("PORT", 1000, 2000),
});

And the error output will look like this:

Error: 'PORT': Error: Value is not in the range <1000, 2000>, current value of 'PORT' is '2020'