babel-plugin-dotenv

0.1.1 • Public • Published

babel-plugin-dotenv

Loads environment variables from a .env file through import statement.

Installation

$ npm install babel-plugin-dotenv

Usage

.babelrc

{
  "plugins": [["babel-plugin-dotenv", {
      "replacedModuleName": "babel-dotenv"
   }]]
}

.env

DB_HOST=localhost
DB_USER=root
DB_PASS=s1mpl3

In whatever.js

import { DB_HOST, DB_USER, DB_PASS } from "babel-dotenv"
db.connect({
  host: DB_HOST,
  username: DB_USER,
  password: DB_PASS
});

Readme

Keywords

Package Sidebar

Install

npm i babel-plugin-dotenv

Weekly Downloads

4,469

Version

0.1.1

License

MIT

Last publish

Collaborators

  • zetachang