You're Invited:Meet the Socket Team at BlackHat and DEF CON in Las Vegas, Aug 4-6.RSVP
Socket
Book a DemoInstallSign in
Socket

arg-parser

Package Overview
Dependencies
Maintainers
1
Versions
6
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

arg-parser

node cli arguments parser

2.0.1
latest
Source
npmnpm
Version published
Weekly downloads
991
34.28%
Maintainers
1
Weekly downloads
 
Created
Source

node-arg-parser

node cli arguments parser

Install

npm install arg-parser

Example

test.js


import Args from 'arg-parser';
const args = new Args(
    'ArgParserTester',
    '1.0',
    'NodeJS arg-parser module tester',
    'In addition to these parameters - more info here...'
);

args.add({ name: 'input', desc: 'input file', switches: [ '-i', '--input-file'], value: 'file' });
args.add({ name: 'output', desc: 'output file', switches: [ '-o', '--output-file'], value: 'file' });
args.add({ name: 'quiet', desc: 'quiet mode', switches: [ '-q', '--quiet'] });
args.add({ name: 'verbose', desc: 'verbose mode', switches: [ '-V', '--verbose'] });
args.add({ name: 'text', desc: 'text to store', required: true });

if (args.parse()) console.log(args.params);

Run test.js

node test.js -h

Output

NodeJS arg-parser module tester
usage: test [options] <text>

    <text>                   text to store

    -V, --verbose            verbose mode
    -h, --help               display help & usage
    -i, --input-file=FILE    input file
    -o, --output-file=FILE   output file
    -q, --quiet              quiet mode
    -v, --version            display cli name & version

    In addition to these parameters - more info here...

Keywords

args

FAQs

Package last updated on 19 Sep 2022

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