UNPKG

@donmccurdy/caporal

Version:

A full-featured framework for building command line applications (cli) with node.js

26 lines (16 loc) 401 B
Fork of the `@caporal/core` package, with updated dependencies and builds. For the original project and documentation, see https://caporal.io/. ## Quickstart Installation: ```bash npm install @donmccurdy/caporal ``` Import: ```js // CommonJS const { program } = require('@donmccurdy/caporal'); // ESM import { program } from '@donmccurdy/caporal'; program .command(...) .action(...); ```