npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

@shoedler/tabelify

v1.0.1

Published

Nicely display data as tables in the terminal

Downloads

2

Readme

Node.js CI Node.js Package

tabelify

Nicely display data as tables in the terminal. Only one dependency: chalk to colorize the output.

Installation

npm i @shoelder/tabelify

Basic Usage

import { tabelify } from 'tabelify';

const data = [
  { name: 'John', age: 24, city: 'New York' },
  { name: 'Jane', age: 23, city: 'London' },
  { name: 'Jack', age: 25, city: 'Paris' },
];

console.log(tabelify(data));

image

Advanced Usage

Here's and example with all the options configured:

import { tabelify } from 'tabelify';

const data = [
  { name: 'John', age: 24, city: 'New York' },
  { name: 'Jane', age: 23, city: 'London' },
  { name: 'Jack', age: 25, city: [1, 2, 3, 4] },
];

const out = tabelify(data, {
  selector: ['name', 'age'], // Only display name and age
  tabelifyOptions: {
    rowDivider: true, // Add a divider between rows
    border: 'single', // Add a border around the table. Also supports 'double', 'rounded', 'bold' and 'ascii'
    recurse: true, // Recurse into objects and arrays
    indices: true, // Add a column with indices
  },
  columnOptions: {
    age: {
      headerOverride: 'Age', // Override the header name
      horizontalAlignment: 'right', // Align column to the right. Also supports 'left' and 'middle'
      verticalAlignment: 'center', // Align column to the center. Also supports 'top' and 'bottom'
      formatter: (value, chalk) => chalk.red(value), // Format the value with chalk
    },
  },
});

console.log(out);

image

Here's an example with mixed data:

import { tabelify } from 'tabelify';

const out = tabelify(
  [
    { name: 'John', age: 24, city: 'New York\nYay!', country: 'USA' },
    { name: 'Mary', age: 27, city: 'Berlin', country: [{ lol: 1 }, { foo: 2 }, { bar: 3 }] },
    { name: 'Mike', age: 41, city: 'Rome', country: { f: 1 } },
    { name: 'Lisa\nMartinez\nValencia\nVeloquez', age: 19, city: 'Madrid', country: () => 1 },
    { name: 'Tom', age: 23, city: 'Vienna', country: 123n },
    { name: 'Kim', age: 29, city: 'Amsterdam', country: [null, undefined] },
    1 as any,
  ],
  {
    selector: ['name', 'age', 'city', 'country'],
    columnOptions: {
      name: {
        headerOverride: c.bold.magentaBright('Name'),
      },
      age: {
        headerOverride: c.bold.magentaBright('Age'),
        horizontalAlignment: 'right',
      },
      country: {
        headerOverride: c.bold.magentaBright('Country'),
        horizontalAlignment: 'right',
      },
      city: {
        headerOverride: c.bold.magentaBright('City'),
        horizontalAlignment: 'left',
      },
    },
    tabelifyOptions: {
      rowDivider: true,
      border: 'rounded',
      recurse: true,
      indices: true,
    },
  },
);

console.log(out);

image