New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More

ezzy-argument

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ezzy-argument

A lightweight package to obtain arguments from the environment.


Version published
Maintainers
1
Created

ezzy-argument

Build Status Coverage Status

This small lightweight library will help fetch arguments from the environment or from the node arguments.

By requesting this library, you'll be able to invoke:

const arg = require('ezzy-argument');
arg('my_argument', 'default value');

This will look for an argument for:

  • process.env.my_argument
  • process.env.MY_ARGUMENT
  • process.argv['-MY_ARGUMENT']
  • process.argv['--MY_ARGUMENT']
  • process.argv['-my_argument']
  • process.argv['--my_argument']

and finally return the default value.

  • 'default value'

FAQs

Package last updated on 27 Sep 2019

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