@yokejs/core-env

Yoke.js Env provides a simple and safe way to access environment variables in Node.js.

Usage no npm install needed!

<script type="module">
  import yokejsCoreEnv from 'https://cdn.skypack.dev/@yokejs/core-env';
</script>

README

CI

Yoke.js Env

Yoke.js Env provides a simple and safe way to access environment variables in Node.js.

Installation

$ yarn add "@yokejs/core-env" or $ npm install "@yokejs/core-env"

Usage

Retrieving an environment variable

import Env from '@yokejs/core-env'

const env = Env()

// Retrieve an environment variable safely
env.get('NODE_ENV')

// Retrieve an environment variable with a default value fallback
env.get('NODE_ENV', 'local')

License

Yoke.js Env is open-sourced software licensed under the MIT License.