cli-crafter

v1.6.2 • by Terminal Tools

A framework for building beautiful and interactive command-line interfaces.

Installation

$ swalang install cli-crafter

Documentation

CLI Crafter

Build powerful command-line tools with Swalang.

Usage

import cli from 'cli-crafter';

cli
  .command('serve')
  .description('Start the development server')
  .action(() => {
    print('Server starting...');
  });

cli.parse();