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.
		
		
		
		
		
			|  | 6 years ago | |
|---|---|---|
| .. | ||
| boxes.json | 6 years ago | |
| index.js | 6 years ago | |
| license | 6 years ago | |
| package.json | 6 years ago | |
| readme.md | 6 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