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

ee-argv

Package Overview
Dependencies
Maintainers
1
Versions
8
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

ee-argv

A simple and fast commandline arguments parser

  • 0.1.4
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
1.2K
decreased by-72.31%
Maintainers
1
Weekly downloads
 
Created
Source

ee-argv

A simple and fast commandline arguments parser

installation

npm install ee-argv

build status

Build Status

usage

You may start your node app using arguments using one of the formats described below:

  • --key=value

  • --key or

  • --key value

    // node . --port=2345 --trace-http-request --debug sql queries

    var argv = require( "ee-argv" );

    argv.has( "trace-http-request" ); // true argv.get( "port" ); // "2345" argv.has( "port" ); // true argv.get( "debug" ); // sql queries

Keywords

FAQs

Package last updated on 24 May 2015

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