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

ezzy-argument

Package Overview
Dependencies
Maintainers
1
Versions
24
Alerts
File Explorer

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.

  • 3.1.5
  • latest
  • Source
  • npm
  • Socket score

Version published
Maintainers
1
Created
Source

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

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