Babel
  • Docs
  • Setup
  • Try it out
  • Videos
  • Blog
  • Donate
  • Team
  • GitHub
Edit

babel-plugin-transform-node-env-inline

Example

In

process.env.NODE_ENV === "development";
process.env.NODE_ENV === "production";

Out

NODE_ENV=development babel in.js --plugins transform-node-env-inline
true;
false;

Installation

npm install babel-plugin-transform-node-env-inline --save-dev

Usage

With a configuration file (Recommended)

{
  "plugins": ["transform-node-env-inline"]
}

Via CLI

babel --plugins transform-node-env-inline script.js

Via Node API

require("@babel/core").transform("code", {
  plugins: ["transform-node-env-inline"]
});
  • Example
  • Installation
  • Usage
    • With a configuration file (Recommended)
    • Via CLI
    • Via Node API
Babel
Docs
Learn ES2015
Community
VideosUser ShowcaseStack OverflowSlack ChannelTwitter
More
BlogGitHub OrgGitHub RepoWebsite RepoOld 6.x SiteOld 5.x Site