All Projects → ahrefs → bs-dotenv

ahrefs / bs-dotenv

Licence: MIT license
No description, website, or topics provided.

Programming Languages

reason
219 projects

bs-dotenv

bs-dotenv is a package for bucklescript bindings to dotenv.

Installation

yarn add @ahrefs/bs-dotenv

or to follow master version:

yarn add https://github.com/ahrefs/bs-dotenv.git

Usage

Add @ahrefs/bs-dotenv to the bs-dependencies of bsconfig.json.

See original dotenv usage.

Example

Create a .env file:

VALUE1=demo1
VALUE2=demo2

Create a demo.re file:

Dotenv.config();

let _ =
  Js.log(Node.Process.process##env);

more examples here

Add the package as a dependency in bsconfig.json.

Run it:

$ nodejs src/demo.bs.js | grep demo
  VALUE1: 'demo1',
  VALUE2: 'demo2',
Note that the project description data, including the texts, logos, images, and/or trademarks, for each open source project belongs to its rightful owner. If you wish to add or remove any projects, please contact us at [email protected].