boxd

0.1.0 • Public • Published

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│
// └──────────────────────┘

Readme

Keywords

Package Sidebar

Install

npm i boxd

Weekly Downloads

2

Version

0.1.0

License

MIT

Last publish

Collaborators

  • zanchi