Socket
Socket
Sign inDemoInstall

@orion-js/env

Package Overview
Dependencies
8
Maintainers
3
Versions
21
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

    @orion-js/env

Orion Env is a utility for managing a collection of secrets in source control. The secrets are encrypted using public key, elliptic curve cryptography.


Version published
Weekly downloads
375
decreased by-16.29%
Maintainers
3
Install size
1.24 MB
Created
Weekly downloads
 

Readme

Source

Orion Env

Orion Env is a utility for managing a collection of secrets in source control. The secrets are encrypted using public key, elliptic curve cryptography.

This package works as standlaone package. It does not depend on any other orionjs package.

It's like dotEnv but saved in source control.

Creating a new Env config file

Run the following script in a project that has the package installed. Save the password output because you will need to use it to decrypt the keys.

yarn orion-env init --path=<path>

Adding a new env variable

Run the following script in a project that has the package installed and you will be prompted for the variable name and value.

yarn orion-env add --path=<path>

Using in your app

Define the following environment variables (in the old way):

  • ORION_ENV_FILE_PATH=<path> The path to the env file.
  • ORION_ENV_SECRET_KEY=<password> The password to decrypt the keys.

Then you can access the variables by importing the package and all the env variables defined will be the env object.

import {env} from '@orion-js/env'

env.XX

Setting environment variables (process.env)

To add backwards compatibility you can also use this libary to set the environment variables.

import {loadEnv} from '@orion-js/env'

loadEnv(options)

This will set the environment variables for the current process.

Options:

  • secretKey Secret password used to decrypt the encrypted env file. Default: process.env.ORION_ENV_SECRET_KEY
  • envFilePath Location of the file to read. Default: process.env.ORION_ENV_FILE_PATH
  • override Set to true to set the environment variables even if the variable was already set. Default: process.env.ORION_ENV_OVERRIDE

FAQs

Last updated on 11 Apr 2024

Did you know?

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc