cli-table icon indicating copy to clipboard operation
cli-table copied to clipboard

Pretty unicode tables for the CLI with Node.JS

Results 18 cli-table issues
Sort by recently updated
recently updated
newest added

The interface for ```TableOptions``` suggests that is it is valid to pass the constructor options head property as undefined, as if it were not passed at all - standard JS/TS...

[90m╔═════════════╤══════════════╗ [39m [90ma [39m First value [90m│ [39m Second value [90mb [39m [90ma─────────────┼──────────────╢ [39m [90ma [39m First value [90m│ [39m Second value [90mb [39m [90m╚═════════════╧══════════════╝ [39m

Per https://github.com/Marak/colors.js/issues/340, the colors package on which cli-table depends has been migrated to @colors/colors. This PR performs the (very simple) migration. Thanks for your help with getting this into the...

According to GitHut, TypeScript is now the #5th most popular language on github: https://madnight.github.io/githut/#/pull_requests/2020/3 Can you either add types directly to the package or update documentation on how to do...

fixes #123 https://github.com/Automattic/cli-table/issues/123#issuecomment-1238611029 this is the same file as i submitted to dt but without dt's header ## Description this pr adds ts types ## Checklist Please make sure the...

Is it possible to use `fs.writeFileSync` to cleanly output the contents as a file and omit the colors values? I dug around and couldn't find anything, just curious.

use colAligns: ['middle'] to center text, although documentation mention "center"

I'm trying to include this module in a project with webpack, which tries to gather up code into discrete bundles. It can't do this if it can't figure out where...

I expected emojies to work, but ✅ for example gets extra padding: ``` ┌─────────────┬───┬──────────────┐ │ First value │ ✅ │ Second value │ └─────────────┴───┴──────────────┘ ``` Same result in Mac Terminal,...