@donmccurdy/caporal
Version:
A full-featured framework for building command line applications (cli) with node.js
26 lines (16 loc) • 401 B
Markdown
Fork of the `/core` package, with updated dependencies and builds. For the original project and documentation, see https://caporal.io/.
## Quickstart
Installation:
```bash
npm install /caporal
```
Import:
```js
// CommonJS
const { program } = require('@donmccurdy/caporal');
// ESM
import { program } from '@donmccurdy/caporal';
program
.command(...)
.action(...);
```