You cannot select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
Michael Winter 555e2c196e | 5 years ago | |
---|---|---|
.. | ||
boxes.json | 5 years ago | |
index.js | 5 years ago | |
license | 5 years ago | |
package.json | 5 years ago | |
readme.md | 5 years ago |
readme.md
cli-boxes
Boxes for use in the terminal
The list of boxes is just a JSON file and can be used wherever.
Install
$ npm install --save cli-boxes
Usage
const cliBoxes = require('cli-boxes');
console.log(cliBoxes.single);
/*
{
"topLeft": "┌",
"topRight": "┐",
"bottomRight": "┘",
"bottomLeft": "└",
"vertical": "│",
"horizontal": "─"
}
*/
API
cliBoxes
single
┌────┐
│ │
└────┘
double
╔════╗
║ ║
╚════╝
round
╭────╮
│ │
╰────╯
single-double
╓────╖
║ ║
╙────╜
double-single
╒════╕
│ │
╘════╛
classic
+----+
| |
+----+
Related
- boxen - Create boxes in the terminal
License
MIT © Sindre Sorhus