cli-banner

1.0.3 • Public • Published

CLI Banner

Create boxes around strings - great for console printing

yarn add -D cli-banner
# or 
npm install --save-dev cli-banner

Module Usage

const banner = require('cli-banner');
const options = {}
 
console.log(banner('hello world', options)));
 
// ┌──────────────────────────────────────────────────────────────────────────────┐
// │                                                                              │
// │                                 hello world                                  │
// │                                                                              │
// └──────────────────────────────────────────────────────────────────────────────┘

CLI Usage

banner "hello world"
 
# ┌──────────────────────────────────────────────────────────────────────────────┐ 
# │                                                                              │ 
# │                                 hello world                                  │ 
# │                                                                              │ 
# └──────────────────────────────────────────────────────────────────────────────┘ 

Options

Property Name CLI Name Description Choices Default
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

Package Sidebar

Install

npm i cli-banner

Weekly Downloads

2

Version

1.0.3

License

MIT

Last publish

Collaborators

  • camacho