@yasudoro/pretty-table
v0.0.0
Published
A nice little npm package that can print table to the console
Downloads
2
Readme
pretty-table
A nice little npm package that can print table to the console
Installation
npm i @yasudoro/pretty-table
oryarn add @yasudoro/pretty-table
Usage
const PrettyTable = require("pretty-table");
const table = new PrettyTable([
{
name: "Jane Doe",
age: 29
},
{
name: "John Smith",
age: 12
}
]);
table.print();
//Outputs the following to CLI:
╔═════════════════╦═════╗
║name ║ age ║
╠═════════════════╬═════╣
║Kurosaki Ichigo ║ 17 ║
║Sosuke Aizen ║ 34 ║
╚═════════════════╩═════╝