rittenhop-dev/versions/5.94.2/node_modules/ee-argv
2024-09-23 19:40:12 -04:00
..
test first commit 2024-09-23 19:40:12 -04:00
.npmignore first commit 2024-09-23 19:40:12 -04:00
.travis.yml first commit 2024-09-23 19:40:12 -04:00
index.js first commit 2024-09-23 19:40:12 -04:00
package.json first commit 2024-09-23 19:40:12 -04:00
README.md first commit 2024-09-23 19:40:12 -04:00
test.js first commit 2024-09-23 19:40:12 -04:00

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