Skip to content

Sklpcc/bs-dotenv

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

19 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

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',

About

No description, website, or topics provided.

Resources

License

Stars

Watchers

Forks

Packages

 
 
 

Contributors

Languages

  • OCaml 100.0%