mirror of
https://github.com/nodejs/node.git
synced 2025-05-17 20:06:54 +00:00

PR-URL: https://github.com/nodejs/node/pull/20190 Reviewed-By: Rich Trott <rtrott@gmail.com> Reviewed-By: Ruben Bridgewater <ruben@bridgewater.de> Reviewed-By: Tiancheng "Timothy" Gu <timothygu99@gmail.com> Reviewed-By: Benjamin Gruenbaum <benjamingr@gmail.com> Reviewed-By: Michaël Zasso <targos@protonmail.com>
1.1 KiB
1.1 KiB
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