1.0.3 • Published 1 year ago

@jswork/argv v1.0.3

Weekly downloads
-
License
MIT
Repository
-
Last release
1 year ago

argv

Tiny argv impl.

version license size download

installation

npm install @jswork/argv

usage

import argv from '@jswork/argv';

// node index.js --name=afei --age=18 file1 file2
const { args, opts } = argv();
console.log(args); // [ 'file1', 'file2' ]
console.log(opts); // { name: 'afei', age: '18' }

license

Code released under the MIT license.

1.0.3

1 year ago

1.0.2

1 year ago

1.0.1

1 year ago

1.0.0

1 year ago