@donmccurdy/caporal
v0.0.10
Published
A full-featured framework for building command line applications (cli) with node.js
Maintainers
Readme
Fork of the @caporal/core package, with updated dependencies and builds. For the original project and documentation, see https://caporal.io/.
Quickstart
Installation:
npm install @donmccurdy/caporalImport:
// CommonJS
const { program } = require('@donmccurdy/caporal');
// ESM
import { program } from '@donmccurdy/caporal';
program
.command(...)
.action(...);