A no-nonsense framework for command-line switch parsing and command dispatching.
switchit
enables you to write modern command-line applications using a straightforward API and features including:
- Robust command definition using a simple object-oriented API
- Effortless switch and positional argument parsing
- Promise based command dispatching
- Interactive prompt for missing values
- Required and optional switches and parameters
- Variadic switches and parameters
- Nested command hierarchy (like
git remote add {args}
) - Advanced command chaining using
and
andthen
- Shortest unique prefix matching for switches and commands
- Custom command aliases and default sub-command
- Complex command invocation using response files
- Comprehensive built-in help command
There are so many features and functionality to describe that they got its own document just to outline them all!
Quick Start
Install switchit
into your project:
$ npm install switchit --save
Create a .js
file and add the following:
const Command = require('switchit').Command;
class SayHi extends Command {
execute (params) {
console.log(`Hi, ${params.name}!`);
}
}
SayHi.define({
switches: 'name'
});
new SayHi().run();
Run your project file, don't forget to pass --name
:
$ node examples/sayhi.js --name John
Hi, John!
You can also accept positional arguments as parameters in your command:
...
SayHi.define({
parameters: 'name' // changed this from "switches" to "parameters"
});
...
Look ma, no switches!
$ node examples/parameter.js Paul
Hi, Paul!
Do you want to read a parameter form either positional arguments or switches?
switchit
supports it too!
The .run()
method returns a promise!
...
new SayHi().run().then(() => {
console.log("Success!");
},(e) => {
console.error(`Oh no! ${e.message}`)
});
Check it out:
$ node examples/promise.js
Oh no! Missing value for parameter: "name"
$ node examples/promise.js George
Hi, George!
Success!
Wanna see somethiing awesome? Just add interactive: true
to your command definition:
....
SayHi.define({
parameters: 'name',
interactive: true,
// Optionally add some help texts to improve the UI
// more info at docs/Features.md#built-in-help
help: {
'': 'This is a command that says hi!',
'name': 'Your name'
}
});
...
Run it with no arguments to see it in action:
$ node interactive.js
This is a command that says hi!
Press ^C at any time to quit.
Your name
? name:
Check docs/Features.md for more information on how to take advantage of this feature.
Once you get the hang of the examples above, make sure to check our examples directory or our complete docs for more information and API docs.
Please read CONTRIBUTING.md for details on the code of conduct, and the process for submitting pull requests.
switchit
uses SemVer for versioning. For the versions available, see the
tags on this repository.
- Don Griffin - Author - dongryphon
See also the list of contributors who participated in this project.
This project is licensed under the MIT License - see the LICENSE file for details