Security News
Fluent Assertions Faces Backlash After Abandoning Open Source Licensing
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
CLI helper to group commandline arguments
$ npm install --save group-args
node ./cli.js --foo --bar something --group-a 1 --group-b 2
const groupArgs = require('group-args');
// process.argv: [
groupArgs('group');
//=> {foo: true, bar: 'something', group: { a: 1, b: 2 }}
Type: string|array|object
Group arguments by key. When passing an object it is
Could be 'key'
, ['key1','key2']
, {alias1: 'key1', alias2: 'key2'}
Type: array|object
Default: process.argv.slice(2)
Arguments array or already parsed arguments.
Type: string
Default: -
Delimiter between group identifier & key.
Type: bool
Default: true
Disable to allow camelCased arguments provided by e.g. meow
Type: string
Default: undefined
Alias for identifier (short opt)
Type: bool
Default: true
camelCase grouped arguments
See minimist
MIT © Ben Zörb
FAQs
My praiseworthy module
The npm package group-args receives a total of 24,666 weekly downloads. As such, group-args popularity was classified as popular.
We found that group-args demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?
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.
Security News
Fluent Assertions is facing backlash after dropping the Apache license for a commercial model, leaving users blindsided and questioning contributor rights.
Research
Security News
Socket researchers uncover the risks of a malicious Python package targeting Discord developers.
Security News
The UK is proposing a bold ban on ransomware payments by public entities to disrupt cybercrime, protect critical services, and lead global cybersecurity efforts.