UNPKG

@atools/cf

Version:

A guided, interactive CLI framework for Node.js that helps you create elegant command-line tools with minimal effort.

18 lines (12 loc) 264 B
const { BaseCommand } = require('../../lib') class Init extends BaseCommand { init (commander) { } async do () { await console.log('Hello World.') } } Init.command = 'init' Init.alias = 'i' Init.description= 'cf initializer' module.exports = Init