Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/vilicvane/clime

⌨ The command-line interface framework for TypeScript.
https://github.com/vilicvane/clime

clime command-line-parser typescript

Last synced: about 1 month ago
JSON representation

⌨ The command-line interface framework for TypeScript.

Awesome Lists containing this project

README

        

[![NPM Package](https://badge.fury.io/js/clime.svg)](https://www.npmjs.com/package/clime)
[![Build Status](https://travis-ci.org/vilic/clime.svg?branch=master)](https://travis-ci.org/vilic/clime)
[![Coverage Status](https://s3.amazonaws.com/assets.coveralls.io/badges/coveralls_98.svg)](https://coveralls.io/github/vilic/clime?branch=master)

# Clime

The command-line interface framework for TypeScript, fully tested with [baseman](https://github.com/vilic/baseman).

## Prerequisites

- Node.js 6+
- TypeScript compilation options in `tsconfig.json`
- `target` needs to be set as `'es6'` / `'es2015'` or higher.
- `experimentalDecorators` and `emitDecoratorMetadata` should both be enabled.

## Install

```sh
yarn add clime
# or
npm install clime --save
```

## Usage

Here is a basic example, an entry file (usually won't change much among time) and a single command:

**src/cli.ts**

```ts
#!/usr/bin/env node

import * as Path from 'path';
import {CLI, Shim} from 'clime';

// The second parameter is the path to folder that contains command modules.
let cli = new CLI('greet', Path.join(__dirname, 'commands'));

// Clime in its core provides an object-based command-line infrastructure.
// To have it work as a common CLI, a shim needs to be applied:
let shim = new Shim(cli);
shim.execute(process.argv);
```

**src/commands/default.ts**

```ts
import {Command, command, param} from 'clime';

@command({
description: 'This is a command for printing a greeting message',
})
export default class extends Command {
execute(
@param({
description: 'Your loud name',
required: true,
})
name: string,
) {
return `Hello, ${name}!`;
}
}
```

## Features

- ☑ Type and schema based parameters/options casting
- ☑ Object and promise based architecture
- ☑ File path based multi-level subcommands
- ☑ Automatic usage generating
- ☑ Multiple command roots support New in v0.5

### Parameter types and options schema

Clime provides a way in which you can get parameters and options you really want to: **typed** at compile time and **casted** at run time.

```ts
import {Command, Options, command, option, param, params} from 'clime';

export class SomeOptions extends Options {
@option({
flag: 't',
description: 'timeout that does nothing',
})
timeout: number;

// You can also create methods and properties.
get timeoutInSeconds(): number {
return this.timeout / 1000;
}
}

@command()
export default class extends Command {
execute(
@param({
required: true,
description: 'required parameter foo',
})
foo: string,
@param({
description: 'optional parameter bar',
})
bar: number,
@params({
type: String,
description: 'extra parameters',
})
args: string[],
options: SomeOptions,
) {
return 'Hello, Clime!';
}
}
```

And this is what you get for usage/help information:

```shell
USAGE

command [bar] [...args] [...options]

foo - required parameter foo
bar - optional parameter bar
args - extra parameters

OPTIONS

-t, --timeout - timeout that does nothing
```

#### Casting from string

Clime will automatically cast parameters to `number`, `boolean` based on their types.
It also defines interface `StringCastable` that allows user-defined classes to be casted from parameters.

> Please note that `StringCastable` is correspondent to the type of constructor instead of instance, so no `implements` should be present.

For example:

```ts
import {CastingContext} from 'clime';

class File {
constructor(public path: string) {}

static cast(path: string, context: CastingContext): File {
return new File(Path.resolve(context.cwd, path));
}
}
```

#### Validators

A `validator` or `validators` can be specified for parameters and options validation.
A validator can either be an instance that implements interface `Validator`, a function that matches type `ValidatorFunction` or a regular expression.

For the validators in forms other than regular expression, it is the casted value that will be tested against. And for regular expression validator, the source string will be tested against instead.

#### Expected error

A useful way to distinguish expected errors (e.g., errors that might be caused by incorrect user input) from other errors is to throw instances of `ExpectedError` class or its subclasses.
And a validator for example, usually throw instances of `ExpectedError`.

#### Preserving metadata without command-line parameters

As TypeScript only emits metadata for target decorated by decorators, if no command-line parameter added, Clime won't be able to know information of options and context parameter.
Thus a `@metadata` decorator that does nothing at run time is provided for preserving these metadata:

```ts
@command()
export default class extends Command {
@metadata
execute(options: SomeOptions) {
return 'Hello, Clime!';
}
}
```

It is required to have this `@metadata` decorator if no other decorator is applied to method `execute`.

#### Context

Context is an object contains information like current working directory and commands sequence.
You can have `context` passed in by adding the last parameter of `execute` method with type `Context`:

```ts
@command()
export default class extends Command {
@metadata
execute(context: Context) {
return 'Hello, Clime!';
}
}
```

### Subcommands

Clime provides an easy way to create subcommands. The default entry of a clime command is `default.js` (`default.ts` before compilation of course).
Any other `.js` files under the same folder are considered as subcommand files.

Clime allows multi-level subcommands based on file structures. For three-level commands like below:

```text
command

command foo
command foo biu
command foo yo

command bar
command bar bia
command bar pia
```

The file structure could be:

```text
- commands
- default.ts
- foo.ts
- foo
- biu.ts
- yo.ts
- bar
- default.ts
- bia.ts
- pia.ts
```

You may notice that the level-`n` entry could be either at the same level of the level-`(n+1)` commands with name `default.ts` (like `default.ts` in `bar`),
or at the same level of the folder of level-`(n+1)` commands (like `foo.ts` and folder `foo`).

#### Command entry with description only

Clime allows an entry of a group of subcommands to provide only descriptions rather than an actual command.
Just export `description` and `brief` directly from the entry module to do so:

```ts
export const description = 'Some detailed description';

// Used when listing as subcommands.
export const brief = 'brief description';
```

#### Configuring subcommand definitions using `subcommands` field

Clime has to load every subcommand modules under a specific command to know their briefs.
To avoid this, you may export a `subcommands` array with subcommand definitions like below:

```ts
import {SubcommandDefinition} from 'clime';

export const subcommands: SubcommandDefinition[] = [
{
name: 'foo',
brief: 'A subcommand named foo',
},
{
name: 'bar',
brief: 'A subcommand named bar',
},
];
```

Further more, those definition entries also allow you to add alias or aliases for subcommands:

```ts
import {SubcommandDefinition} from 'clime';

export const subcommands: SubcommandDefinition[] = [
{
name: 'foo',
alias: 'f',
brief: 'A subcommand named foo',
},
{
name: 'bar',
aliases: ['b', 'bb'],
brief: 'A subcommand named bar',
},
];
```

## Multiple command roots support

For some CLI tools, it would be nice to support project specific commands. And Clime has this ability built-in.

For example, you may define the `cli` object like below to load commands from both CLI tool commands path as well as project path:

```ts
let cli = new CLI('greet', [
Path.join(__dirname, 'commands'),
'project-commands',
]);
```

And you can also add different labels for those command directories:

```ts
let cli = new CLI('greet', [
{
label: 'Built-in',
path: Path.join(__dirname, 'commands'),
},
{
label: 'Extra',
path: 'project-commands',
},
]);
```

## Testable

As the core of Clime is not coupled with stream-based command line, commands written with Clime can be easily tested.

For example:

```ts
import {Command, Context, command, metadata} from 'clime';

export class TestContext extends Context {
promptForQuery(): Promise {
// Using library like Inquirer.js to interact with user.
return Promise.resolve('result');
}
}

@command()
export default class TestCommand extends Command {
@metadata
execute(context: TestContext) {
return context.promptForQuery();
}
}
```

To test this command, we just need to extend `TestContext`, override `promptForQuery` and call `execute` with new context.

If this command is meant to stop somewhere and exit the process, we can define a `ExitSignal` class that implements `Printable` interface:

```ts
import {Printable} from 'clime';

export class ExitSignal implements Printable {
constructor(public code: number) {}

print(): void {
process.exit(this.code);
}
}

export function exit(code = 0): void {
throw new ExitSignal(code);
}
```

Because `print` method would only be executed by the shim, your test can safely catch the exit signal and assert its correctness.

## License

MIT License.