@dkh-dev/argv
v2.3.1
Published
Node.js process.argv parsed
Downloads
18
Maintainers
Readme
@dkh-dev/parse-argv
Node.js process.argv parsed
Installation
$ yarn install @dkh-dev/argv
Examples
argv.ts
import argv from '@dkh-dev/argv'
console.log(argv);
// $ node test parse --a=b -b -c d e --e --f="g h" -i=123 -j=/k l/ -k false
/* => {
'0': 'parse',
'1': 'e',
'2': 'l/',
a: 'b',
b: true,
c: 'd',
e: true,
f: 'g h',
i: 123,
j: '/k',
k: false
}
*/