boxd
v0.1.0
Published
Create boxes around text with Unicode box-drawing characters
Downloads
10
Readme
boxd
For use in the console. Create boxes around text.
Usage
boxd(String | Array, options)
Where the first argument is a string or an array of strings, and the second is optional object. Options are:
type
: Type of box to create. Supported types are light, heavy, double, arc, doubleDash, heavyDoubleDash, tripleDash, heavyTripleDash, quadDash, and heavyQuadDash. boxd uses Unicode box-drawing characters, if your console font doesn't have the character it won't display properly.centered
: Boolean, whether text should be centered horizontally in the box.consoleCentered
: Boolean, whether the box should be centered in the console.
Example:
const boxd = require('boxd');
console.log(boxd('Boxes are cool\nAnd boxd makes it easy'));
// or
console.log(boxd(['Boxes are cool', 'And boxd makes it easy']));
// ┌──────────────────────┐
// │Boxes are cool │
// │And boxd makes it easy│
// └──────────────────────┘