Goldstack CLI Utils
This library contains a method to wrap the execution for a Node.js CLI application.
This utility has been developed for the Goldstack starter project builder. Check it out for starting your next project
Installation
npm install @goldstack/utils-cli
Usage
import { runCli } from '@goldstack/utils-cli';
runCli(async () => {
// Your CLI logic here
});
See Source Code.