๐Ÿš€ Big News: Socket Acquires Coana to Bring Reachability Analysis to Every Appsec Team.Learn more โ†’
Socket
Sign inDemoInstall
Socket

chalk-table

Package Overview
Dependencies
Maintainers
1
Versions
3
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

chalk-table

`chalk-table` is a small terminal table tool that comes with chalk support out of the box.

1.0.2
latest
Source
npm
Version published
Maintainers
1
Created
Source

Chalk Table

chalk-table is a small terminal table tool that comes with chalk support out of the box.

It is a project I forked from @deoxxa's cool asciitable package. I've added support for chalk and a few extra fixes. In case you're wondering, it can still render simple tables with headings and pretty hyphen/pipe character-based formatting.

Install

npm i chalk-table --save

If you use yarn, you know how it goes. :D

Quick example:

We'll render the following ascii table:

The above example table has been built with the following code:

const chalk = require("chalk");
const chalkTable = require("../src");

const options = {
  leftPad: 2,
  columns: [
    { field: "id",     name: chalk.cyan("ID") },
    { field: "fruit",  name: chalk.magenta("Fruit") },
    { field: "veggie", name: chalk.green("Vegetable") },
    { field: "other",  name: chalk.yellow("Other") }
  ]
};

const table = chalkTable(options, [
  { id: 0, fruit: "๐Ÿ‡ Grapes",     veggie: "๐ŸŒฝ Maize",    other: "๐Ÿ• Pizza" },
  { id: 1, fruit: "๐Ÿˆ Melon",      veggie: "๐Ÿ… Tomato",   other: "๐Ÿ” Hamburger" },
  { id: 2, fruit: "๐Ÿ‰ Watermelon", veggie: "๐Ÿฅ‘ Avocado",  other: "๐ŸŒญ Hot Dog" },
  { id: 3, fruit: "๐ŸŠ Tangerine",  veggie: "๐Ÿฅฆ Broccoli", other: "๐Ÿฅช Sandwich" },
  { id: 4, fruit: "๐Ÿ Pineapple",  veggie: "๐Ÿฅ’ Cucumber", other: "๐ŸŒฎ Taco" }
]);

console.log(table);

There are a few key differences from asciitable's default settings. For instance:

  • the intersectionCharacter option defaults to a + character.
  • There's an additional leftPad option which allows control over how many padding the table should be from the left of the terminal view.
  • There's also no skinny option.

For more documentation or a getting-started guide, head over to asciitable's repository.

Happy hacking!

Keywords

ascii

FAQs

Package last updated on 28 Mar 2019

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts