@carloslauriano/cli-maker
v1.0.3
Published
The idea is to make a helper for creating a custom CLI
Downloads
2
Readme
cli-maker
The idea is to make a helper for creating a custom CLI
Below is an idea of how I would like it to look
import cliMaker from 'cli-maker'
const cli = new cliMaker();
cli.registerCommand({
comand: 'hello',
alias:'h'
},
()=>{
console.log('world');
})
customCli hello
-> world
or
customCli h
-> world
Contributors
Made with contrib.rocks.