README
argue-cli
A thin and strongly typed CLI argument parser for Node.js.
Usage
- Install
# yarn
yarn add argue-cli
# pnpm
pnpm add argue-cli
# npm
npm i argue-cli
- Import in your code and use it!
import { read, end, expect, alias, option, readOptions } from 'argue-cli'
/**
* Expect and read one of the commands
*/
const command = expect(
alias('install', 'i'),
'remove'
)
let options = {}
if (command === 'install') {
/**
* Read passed options
*/
options = readOptions(
option(alias('save', 'S'), Boolean),
option(alias('saveDev', 'save-dev', 'D'), Boolean),
option('workspace', String)
)
}
/**
* Read next argument
*/
const packageName = read()
/**
* Expect end of the arguments
*/
end()
/* ... */
API
Method | Description |
---|---|
|
Read next argument. Throws error if no next argument. |
|
Expectation of the end. Throws an error if there are more arguments left. |
|
Expect one of the given arguments. |
|
Describe argument with aliases. |
|
Describe option with value. |
|
Read options from arguments. |
TypeScript
In API section types are described in a simplified way. Detailed example of the types you can see here.