simple-argv
Simple process.argv value parser, if yargs has become an overkill for your needs.
npm i simple-argv
Parsing output example
given this simple program:
const argv = require('simple-argv');console.log(argv);
executed with this flags:
node . test1 test2 -a 1 --b 2 -c=testC -d = testD --debug --no-woman --no-cry --happy --key value test3 -xyz
will return this output: