Easily integrate ASCII flavoured banner to your CLI utility.
$ npm install --save node-bannerconst showBanner = require('node-banner');
(async () => {
await showBanner('The Title', 'This is a suitable tagline');
})();title: Name of the utility.tagLine: A suitable tagline.titleColor: Override the default title-color that defaults tored.tagLineColor: Override the default tagline-color that defaults toyellow.
$ npm test