read-env-value
TypeScript icon, indicating that this package has built-in type declarations

1.1.0 • Public • Published

read-env-value

JSR JSR Score NPM Version NPM Downloads NPM License codecov GitHub Workflow Status PRs Welcome CodeRabbit Pull Request Reviews

Read env with default value

Usage

import { env } from 'read-env-value';

// read env 'NODE_ENV' with default value 'development'
const value = env('NODE_ENV', 'string', 'development');

API

env(key: string, type: 'string' | 'number' | 'boolean', defaultValue?: string | number | boolean)

Parameters

  • key: The environment variable key to read.
  • type: The type of the value to be returned.
  • defaultValue: The default value to return if the environment variable is not set.

Returns

  • The value of the environment variable.

Example

import { env } from 'read-env-value';

const value = env('NODE_ENV', 'string', 'development');

License

MIT

Contributors

Contributors

Made with contributors-img.

Readme

Keywords

Package Sidebar

Install

npm i read-env-value

Weekly Downloads

203

Version

1.1.0

License

MIT

Unpacked Size

15.8 kB

Total Files

11

Last publish

Collaborators

  • fengmk2