Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

envix

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

envix

[![npm version][npm-version-src]][npm-version-href] [![npm version][codecov-src]][codecov-href] [![Master Workflow][workflow-src]][workflow-href] [![Known Vulnerabilities][snyk-src]][snyk-href] [![Conventional Commits][conventional-src]][conventional-href

  • 1.5.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
47K
decreased by-0.94%
Maintainers
1
Weekly downloads
 
Created
Source

envix ⚙️

npm version npm version Master Workflow Known Vulnerabilities Conventional Commits

This library simplifies reading, transforming, and requiring environment variables across runtimes like Node.js, Deno, Bun.js, Browser, and more.

Table of Contents

Installation

npm install envix --save

Usage

Write

The write method makes it possible to set an environment variable retrospectively for later accesses.

import { write } from 'envix';

write('foo', 'bar');

Read

The read method accepts the key of the environment variable as the first argument and an alternative value as the second argument, which is returned if the variable does not exist. If no argument is passed, an object with all environment variables is returned.

import { read, write } from 'envix';

write('foo', 'bar');

read('foo'); // string | undefined
// bar

read('bar', 'baz'); // string
// baz

Read Array

The readArray method makes it possible to read an environment variable as a string array. A fallback value can be defined as the second argument.

import { readArray, write } from 'envix';

write('foo', 'bar,baz');

readArray('foo'); // string[] | undefined
// ['bar', 'baz']

readArray('bar', ['foo']); // string[]
// ['foo']

Read Bool

The readBool method makes it possible to read an environment variable as a boolean. A fallback value can be defined as the second argument.

import { readBool, write } from 'envix';

write('foo', 'true');

readBool('foo'); // boolean | undefined
// true

readBool('bar', false); // boolean
// false

Read Float

The readFloat method makes it possible to read an environment variable as a float. A fallback value can be defined as the second argument.

import { readFloat, write } from 'envix';

write('foo', '1');

readFloat('foo'); // number | undefined
// 1.0

readFloat('bar', 2.0); // number
// 2.0

Read Int

The readInt method makes it possible to read an environment variable as a integer. A fallback value can be defined as the second argument.

import { readInt, write } from 'envix';

write('foo', '1.0');

readInt('foo'); // number | undefined
// 1

readInt('bar', 2); // number
// 2

Read Number

The readNumber method makes it possible to read an environment variable as a number. A fallback value can be defined as the second argument.

import { readNumber, write } from 'envix';

write('foo', '1.0');

readNumber('foo'); // number | undefined
// 1.0

readNumber('bar', 2.0); // number
// 2.0

Read Number Array

The readNumberArray method makes it possible to read an environment variable as a number array. A fallback value can be defined as the second argument.

import { readNumberArray, write } from 'envix';

write('foo', '1.0,2.1');

readNumberArray('foo'); // number[] | undefined
// [1.0,2.1]

readNumberArray('bar', [2,3]); // number[]
// [2,3]

Contributing

Before starting to work on a pull request, it is important to review the guidelines for contributing and the code of conduct. These guidelines will help to ensure that contributions are made effectively and are accepted.

License

Made with 💚

Published under MIT License.

FAQs

Package last updated on 12 Feb 2024

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc