Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

abigail-plugin-env

Package Overview
Dependencies
Maintainers
1
Versions
1
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

abigail-plugin-env

abigail-v1 NODE_ENV plugin

  • 0.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

Abigail Env Plugin

No installation

abigail built-in plugin

Usage

switch to production

if turn this plugin, change the NODE_ENV to production.

abby build --env
# NODE_ENV was changed to "production".

other environment

if specify a value for the plugin, it set value to the NODE_ENV.

abby build --env development
# NODE_ENV was changed to "development".

replacing all

if specify a options.full, it set all values to process.env.

abby build --env.full.NODE_ENV 'foo' --env.full.port 59798
# process.env was changed using options.full.

use abigail.plugins.env field in package.json

{
  // ...
  "abigail": {
    "plugins": {
      // default disable
      "env": false

      // default "production"
      "env": true

      // default "development"
      "env": "development"

      // default: replacing all
      "env": {
        "enable": true,
        "full": {
          "NODE_ENV": "production",
          "port": 59798,
          "host": "berabou.me"
        }
      }
    }
  }
}

See also

Development

Requirement global

  • NodeJS v5.10.0
  • Npm v3.8.3
git clone https://github.com/abigailjs/abigail-plugin-env
cd abigail-plugin-env
npm install

npm test

License

MIT

Keywords

FAQs

Package last updated on 09 Apr 2016

Did you know?

Socket

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
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc