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

@pratiq/envy

v1.0.25

Published

Easily load, parse and manage env variables

Downloads

4

Readme

Installation

Install using your preferred package manager

pnpm add @pratiq/envy

Basic Usage

Grab the keys, trim the prefix and return and object with key-values.

# .env.testing
MY_LONG_ASS_PREFIX_API_URL=https://my-server.xyz/my-api/
MY_LONG_ASS_PREFIX_API_KEY=1a2b3c4d5e6f
const envy = require('@pratiq/envy')

const api = envy('MY_LONG_ASS_PREFIX_API_')
const res = fetch(`${api.URL}/restricted`, { api_key: api.KEY })

Usage Examples

Common usage instructions and examples

const vars = envy({
    flap: 'FLAP',
    tap: 'TX_TAP',
    myKey:{
        key: 'MY_UNIQUE_KEY',
        type: 'number',
        default: 1877
    }
}, {
    file: '.env.testing',
    prefix: 'TEST_CASE_7_',
    coerce: true,
    verbose: 2,
    override: true,
    encoding: 'utf8'
})

| key | value | |-|-| MONGO_CONNECTION_URI | mongodb+srv://<user>:<password>@cluster1.abcd123.mongodb.net MONGO_PREFIX | myCollection SIMULATION_X_MULTIPLIER | 52_000 SIMULATION_Y_MULTIPLIER | 4.567 SIMULATION_Z_MULTIPLIER | 5e1 AUTH_GITHUB_APP_ID | 827431 AUTH_GITHUB_ID | Iv2.056f7c9a5sfc923rc AUTH_GITHUB_SECRET | a7bdaec7de897cdbed6aebc7de6a08e7dbc9 NEXT_PUBLIC_CLIENT_ID | 135 NEXT_PUBLIC_CLIENT_KEY | 74617321489 NEXT_PUBLIC_CLIENT_SECRET | 7adn293yrmnefydsa9i320

These values are imitations of the types and values of their real value

Load everything

Load all variables from your environment into an object:

const vars = envy()
// vars.npm_package_version = "1.0.0",
// vars.SSH_AUTH_SOCK = "/run/user/1000/keyring/ssh",

Load by Prefix

Load all variables with a key matching the provided prefix string

const nextVars = envy("NEXT_PUBLIC_")
// nextVars.CLIENT_ID = "74617231389"
// nextVars.CLIENT_SECRET = "7adn293yrmifydsa9i320"

const authVars = envy("AUTH_")
// authVars.GITHUB_APP_ID = "829434"
// authVars.GITHUB_ID = "Iv2.098f7c9a7sfc923rc"

Load Specific Keys

Load specific keys only using an object of names mapped to the .env key

const vars = envy({
    gitSecret: 'AUTH_GITHUB_SECRET',
    clientSecret: 'NEXT_PUBLIC_CLIENT_SECRET'
})
// vars.gitSecret    = a7bdaec7de897cdbed6aebc7de6a08e7dbc9
// vars.clientSecret = 7adn293yrmifydsa9i320

Keys and Prefix

Load specific keys by prefix and assign them to the key they were mapped to.

const vars = envy({
    id: 'ID',
    ss: 'SECRET',
}, {
    prefix: 'NEXT_PUBLIC_CLIENT_',
})
// vars.id  = 135
// vars.ss  = 7adn293yrmifydsa9i320

Default Values

Use an object to assign additional options to a key, like default values.

const vars = envy({
    myKey:{
        key: 'MY_KEY',
        default: 1877
    },
    blap:{
        key: 'BIG_BLAP',
        default: 9423
    }
})
// vars.myKey = 123456
// vars.blap  = 9423

Coerce Keys

Use the config item to specify a type to coerce the variable to and a default value if the env variable is not found. This key will attempt to use the inferred type from the default if no type property is provided.

const vars = envy({
    myKey:{
        key: 'MY_KEY',
        type: 'number',
        default: 1877
    }
})

Options

Envy provides the following options to control its behavior or alter the output.

File

Provide a path to the file to load or inherit from the current environment

const vars = envy({ file: '.env.testing' })
const vars = envy({ file: 'inherit' }) // default, same as:
const vars = envy()

Many hosting platforms and frameworks set the NODE_ENV variable when starting the process, which is useful for determining which .env file to load. Vercel for example sets this value to 'development', 'preview' or 'production' depending on the target environment.

Starting the node process with the NODE_ENV variable set will load the .env file with the respective name, for example:

$ NODE_ENV = testing      # ".env.testing"
$ NODE_ENV = development  # ".env.development"

Prefix

Load and parse keys that include the prefix, then remove the prefix from the keys.

const vars = envy({}, { prefix: 'NEXT_PUBLIC_CLIENT_' })

The string prefix, if provided to envy as the first argument, will override options.prefix

const vars = envy('OOPS_', { prefix: 'NEXT_PUBLIC_CLIENT_' }) // => "OOPS_..."

Encoding

Load and parse .env files that use encoding other than utf8 - the default. Envy automatically attempts to convert from the provided encoding to utf-8, or you can define what encoding it should use.

const vars = envy({ encoding: 'base64' })

Verbose

Set envy to log or throw errors when an error is encountered during .env loading or parsing.

const vars = envy({
    verbose: 0, 
    // 0 disabled
    // 1 enabled
    // 2 throw errors
})

Coerce

Enable global type coercion to the provided type, or enable automatic type coercion. All values will be coerced to this value, unless config provides items with their own type, or if global coerce is set to 0 (disabled).

  • 0: No type coercion
  • 1: Strict type coercion
  • 2: Inferred type coercion
const vars = envy({
    age: 'TOKEN_AGE',       // coerced to inferred type
    expires: 'TOKEN_EXP',   // coerced to inderred type
    name: {
        key: 'TOKEN_NAME',  // string (not coerced)
        type: 'string',
    }
}, { 
    coerce: 2,
})

Type

Provide a type to coerce all values to, if coerce is set at or above 1, or if config items provide a custom type.

Avalable types are string, number, boolean, array and object.

const vars = envy({
    age: 'TOKEN_AGE',       // coerced to number
    expires: 'TOKEN_EXP',   // coerced to number
    name: {
        key: 'TOKEN_NAME',  // string (not coerced)
        type: 'string',
    }
}, { 
    coerce: 1,
    type: 'number'
})

Types / Interfaces

Override Patterns

The following overrides are considered valid usage:

envy()
envy('prefix')
envy({ config })
envy(null, { options })
envy({}, { options })
envy('prefix', { options }) 
envy({ config }, { options })
envy({ options })

The most common overrides are string prefix, or config object:

envy('prefix_')
envy({
    prefix: 'prefix_',
    file: 'inherit',
    coerce: 2,
})

Type Definitions

EnvyOptions

export type EnvyOptions = {

    // Global type for automatic type coercion
    type?: CoerceTypes;
    
    // Find and parse keys with prefix and return keys 
    // with prefix removed
    prefix?: string;
    
    // Enable automatic type coercion to the provided or 
    // inferred types
    coerce?: 0 | 1 | 2;
    
    // Enable logging / throwing errors
    verbose?: VerboseTypes;
    
    // Path to your .env file relative to the projects root.
    file?: string;

    // Override any environment variables that have already 
    // been set on your machine with values from your .env file. 
    override?: boolean;

    // Load and parse .env files with alternative encodings
    encoding?: EncodingTypes
}

ConfigItem

Key parsing definitions used in the envy config.

export type EnvyConfigItem = {
    // The key to match and parse
    key: string;
    // The type for coercion
    type?: CoerceTypes;
    // The default value if no key found
    default?: string;
}

CoerceTypes

export const Coerce = {
    STRING: 'string',
    NUMBER: 'number',
    ARRAY: 'array',
    OBJECT: 'object',
    BOOLEAN: 'boolean',
} as const;
export type CoerceTypes = typeof Coerce[keyof typeof Coerce];

VerboseTypes

export const Verbose = {
    DISABLED: 0,
    ENABLED: 1,
    THROW: 2,
} as const;
export type VerboseTypes = typeof Verbose[keyof typeof Verbose];

EncodingTypes

export const Encoding = {
    UTF8: 'utf8',
    UCS2: 'ucs2',
    ASCII: 'ascii',
    UTF16LE: 'utf16le',
    UTF16BE: 'utf16be',
    UTF32LE: 'utf32le',
    UTF32BE: 'utf32be',
    ISO88591: 'iso88591',
    ISO88592: 'iso88592',
    ISO88593: 'iso88593',
    ISO88594: 'iso88594',
    ISO88595: 'iso88595',
    ISO88596: 'iso88596',
    ISO88597: 'iso88597',
    ISO88598: 'iso88598',
    ISO88599: 'iso88599',
    ISO885910: 'iso885910',
    ISO885913: 'iso885913',
    ISO885915: 'iso885915'
 } as const;
export type EncodingTypes = typeof Encoding[keyof typeof Encoding];

License

This package is provided under the MIT license. View LICENSE.txt for more info.