CLI Banner
Create boxes around strings - great for console printing
yarn add -D cli-banner
npm install --save-dev cli-banner
Module Usage
const banner = require('cli-banner');
const options = {}
console.log(banner('hello world', options)));
CLI Usage
banner "hello world"
Options
width | width | Width of the banner (including borders) | any Number , "auto" | 80 |
color | color | Color of the test | "black" , "red" , "green" , "yellow" , "blue" , "magenta" , "cyan" , "white" , "gray" , "redBright" , "greenBright" , "yellowBright" , "blueBright" , "magentaBright" , "cyanBright" , "whiteBright" , | "white" |
borderColor | border-color | Color of the border | "black" , "red" , "green" , "yellow" , "blue" , "magenta" , "cyan" , "white" , "gray" , "redBright" , "greenBright" , "yellowBright" , "blueBright" , "magentaBright" , "cyanBright" , "whiteBright" , | "white" |
paddingLength | | Minimum amount of spaces on either side of the string | | 3 |
Docs