@magic/cli
declarative cli sanitization and execution for @magic
sanitizes cli flags from aliases to default names
rewrites process.argv accordingly
provides autogenerated --help output (that can be customized)
also handles commands and environment for you
html-docs
dependencies:
@magic/log and @magic/types have no dependencies.
install
be in a nodejs project.
npm i --save-dev @magic/cli
caveats
there are some quirks that need some careful consideration when designing a cli api
depending on your requirements, these caveats should seldomly apply.
last argument
- if your last argument does not have a corresponding flag,
it will still be assigned to the last flag prior to it.
- if one of your options gets an argument that is equal to a command,
this command will be executed
- cli arguments that start with a - will always be treated as flags, not values.
those issues might get addressed in the future.
Usage
full api:
#!/usr/bin/env node
const cli = require('@magic/cli')
const { argv, env, commands } = cli({
commands: [
['cmd1', 'cmd1alias'],
'cmd2',
],
options: [
['--flag1', '-f1'],
['--flag2', '-f2'],
],
default: [
['--default-key', 'default-value'],
],
env: [[['--production', '--prod', '--p', '-p'], 'NODE_ENV', 'production']],
pure: true,
pureArgv: true,
pureEnv: true,
})
options / argv
argv mappings will handle options and option aliases
using the cli file above
bin.js -f1 arg1 arg2 -f2
resulting process.argv:
process.argv = [
'/path/to/bin/node',
'/path/to/bin.js',
'--flag1'
'arg1',
'arg2',
'--flag2',
]
resulting javascript object
```javascript
argv === { '--flag1': ['arg1', arg2], '--flag2': []}
cli commands can be handled too.
const cli = require('@magic/cli')
const args = {
commands: [
['dev', 'development', 'start'],
'serve',
],
}
const argv = cli(args)
./bin.js dev serve
{
cmds: ['dev', 'serve'],
commands: ['dev', 'serve'],
}
help output
at the moment, @magic/cli will just show a simple message that no help text was set.
in the future, we will parse your configuration and create a help text based on it.
simple help message
const cli = require('@magic/cli')
const args = {
commands: [['magic', 'm']],
options: [['--spell', '-s']],
env: [[['dev', 'development'], 'NODE_ENV', 'development']],
prepend: 'prepend',
append: 'append',
help: 'custom help text',
}
const argv = cli(args)
./bin.js
`
@magic/cli wrapped cli.
custom help text
cli commands
magic - aliases: ["m"]
possible command line flags:
--spell - aliases: ["-s"]
environment switches:
dev: set NODE_ENV to development - aliases ["development"]
`
detailed help message
the help property will accept an object which maps to the args object
const cli = require('@magic/cli')
const args = {
commands: [['magic', 'm']],
options: [['--spell', '-s']],
env: [[['dev', 'development'], 'NODE_ENV', 'development']],
prepend: 'prepend',
append: 'append',
help: {
name: 'cli name',
text: 'custom help text',
commands: {
magic: 'magic info help text',
},
options: {
'--spell': 'cast a simple spell',
},
env: ['dev', 'set environment to development'],
},
}
const argv = cli(args)
./bin.js
`
cli name
custom help text
commands:
magic - aliases: ["m"]
flags:
--spell - aliases: ["-s"]
environment switches:
dev: set process.NODE_ENV to development - aliases ["development"]
`
configuration
there are some configuration parameters that can be passed to the cli function
pure
const args = {
pure: false,
pureEnv: false,
pureArgv: false,
}
cli(args)
<a name="prepend-append>prepend/append
process.argv values can be prepended and appended
const cli = require('@magic/cli)
const args = {
prepend: ['prepended']
append: ['appended']
}
cli(args)
default
use this to set default process.argv key: value pairs that should be set if they are not
const cli = require('@magic/cli')
const args = {
options: [
['--default-key'],
],
default: [
['--default-key', 'default-value']
],
}
const argv = cli(args)
{
argv: {
'--default-key': 'default-value',
},
}