@toolbarthomas/argumentje
v0.5.0
Published
Simple Command Line Interface parser for Node.js
Readme
Argumentje
Argumentje is a lightweight alternative for parsing command line arguments
Getting started
You can install this package via NPM, we assume Node.js is installed.
$ npm install @toolbarthomas/argumentjeSetup
// $ node ./index.js --minify --path=foo --debug=false
import { parse } from '@toolbarthomas/argumentje'
const args = parse()
// Output: { debug: false, minify: true, path: "foo" }