take command
A comprehensive Node.js module providing a set of tools for creating elegant command line interfaces by wrapping several popular CLI tools into one cohesive package. This project simplifies CLI development by combining functionality from various libraries, including command parsing, user interaction, and system command execution.
- Commander Integration: Leverages
commanderfor powerful command-line interfaces. - Progress and Spinner: Includes
@basd/spinner, a mix ofcli-spinnerandcli-progressfor interactive CLI feedback. - CLI Utilities: Offers utilities from
basd(a lodash wrapper),shelljsfor shell commands,promptsfor interactive user inputs, andcli-colorfor colorful CLI output.
Install @basd/cli using npm:
npm install @basd/cliThe @basd/cli module is designed to be intuitive for developers familiar with Node.js CLI development. Here's some examples to get you started:
The commander module in @basd/cli is used for building command-line interfaces with support for commands, options, and sub-commands.
const{ program }=require('@basd/cli')// Define a new command with optionsprogram.command('serve [port]').description('Start the server').option('-d, --debug','output extra debugging').action((port,options)=>{constportNumber=port||3000console.log(`Server running on port ${portNumber}`)if(options.debug)console.log('Debugging mode is on')})// Parse command-line argumentsprogram.parse(process.argv)ShellJS is integrated for executing shell commands in a Unix shell-style, but within your Node.js scripts.
const{ shell }=require('@basd/cli')// Execute a simple UNIX commandshell.exec('echo hello world')// Use it in a more complex scenarioif(shell.exec('git status').code!==0){shell.exit(1)}The prompts module is excellent for creating interactive command-line prompts.
constcli=require('@basd/cli')asyncfunctionaskName(){constresponse=awaitcli.prompts({type: 'text',name: 'name',message: 'What is your name?'})console.log(`Hello, ${response.name}!`)}askName()Progress and Spinner from @basd/spinner provide visual feedback for CLI applications.
const{ Spinner }=require('@basd/spinner')constspinner=newSpinner({id: 'unique-spinner-id',// optionalcolor: 'green',// optionalspinner: 'dots'// optional, spinner style})spinner.start('Loading...')// Update the spinnerspinner.update('Still loading...')// Complete the spinnerspinner.succeed('Completed!')const{ Progress }=require('@basd/spinner')constprogressBar=newProgress({total: 100,// total value of the progress barpreset: 'shades_classic'// optional, style of the progress bar})progressBar.start(0)// Increment the progressprogressBar.increment(10)// Update the progress bar to a specific valueprogressBar.update(50)// Complete the progressprogressBar.stop()const{ colors }=require('@basd/cli')console.log(colors.red('This is a red text'))- API Reference: Based on jsdoc comments.
- commander: Interface for defining commands and options.
- Progress & Spinner: Utilities for displaying progress bars and spinners.
- prompts: For creating interactive command-line prompts.
- colors: Enhance your CLI output with colored text.
- shell: Execute shell commands within your Node.js application.
In order to run the test suite, simply clone the repository and install its dependencies:
git clone https://github.com/basedwon/cli.git
cd cli
npm installTo run the tests:
npm testThank you! Please see our contributing guidelines for details.
If you find this project useful and want to help support further development, please send us some coin. We greatly appreciate any and all contributions. Thank you!
Bitcoin (BTC):
1JUb1yNFH6wjGekRUW6Dfgyg4J4h6wKKdF
Monero (XMR):
46uV2fMZT3EWkBrGUgszJCcbqFqEvqrB4bZBJwsbx7yA8e2WBakXzJSUK8aqT4GoqERzbg4oKT2SiPeCgjzVH6VpSQ5y7KQ
@basd/cli is MIT licensed.