Skip to content

TypeScript decorators for commander that makes developing command line tools with Node even easier.

License

Notifications You must be signed in to change notification settings

malarahfelipe/commander-ts

 
 

Repository files navigation

commander-ts

TypeScript decorators for commander that makes developing command line tools with Node even easier.

Usage

  1. Import commander-ts into your project.
    $ npm install --save commander-ts
    

Example

index.ts

import {
	action, command, commandOption, description, option,
	optionalArg, program, requiredArg, usage,
	variadicArg, version,
	Command
} from 'commander-ts';

@program()
@version('1.0.0')
@description('A basic program')
@usage('--help')
export class Program {
	@option('--env <env>')
	env: string = null;

	constructor() {}

	run(@requiredArg('message') message) {
		console.log(`Message: ${message}`);
	}

	@command()
	@commandOption('--reverse')
	print(
		this: Command,
		@requiredArg('first') first,
		@optionalArg('last') last,
		@variadicArg('credentials') credentials
	) {
		console.log(`Name: ${ this.reverse ? `${last}, ${first}` : `${first} ${last}` }, ${credentials.join(', ')}`)
	}
}

const p = new Program();

$ node index.js "Hello world"
  Hello world

$ node index.js print Jack Bauer
  Jack Bauer

$ node index.js print James Bond --reverse
  Bond, James

About

TypeScript decorators for commander that makes developing command line tools with Node even easier.

Resources

License

Stars

Watchers

Forks

Packages

No packages published

Languages

  • TypeScript 100.0%