Skip to content

nvdnkpr/ascii-table

 
 

Repository files navigation

Ascii Table

Build Status

Easy table output for node debugging, but you could probably do more with it, since its just an string.

Usage

Node.js

var Table = require('ascii-table')

Browser

<script src="ascii-table.min.js"></script>

Note: If using in the browser, it will be placed under window.AsciiTable

Example

Basic usage

var table = new Table('A Title')
table
  .setHeading('', 'Name', 'Age')
  .addRow(1, 'Bob', 52)
  .addRow(2, 'John', 34)
  .addRow(3, 'Jim', 83)

console.log(table.toString())
.------------------.
|      A Title     |
|------------------|
|    | Name  | Age |
|----|-------|-----|
|  1 | Bob   |  52 |
|  2 | John  |  34 |
|  3 | Jim   |  83 |
'------------------'

Lets sort by age

table.sortColumn(2, function(a, b) {
  return a - b
})
console.log(table.toString())
.------------------.
|      A Title     |
|------------------|
|    | Name  | Age |
|----|-------|-----|
|  2 | John  |  34 |
|  1 | Bob   |  52 |
|  3 | Jim   |  83 |
'------------------'

We can make a simple table as well.

var table = new Table()
table
table
  .addRow('a', 'apple', 'Some longer string')
  .addRow('b', 'banana', 'hi')
  .addRow('c', 'carrot', 'meow')
  .addRow('e', 'elephants')


console.log(table.toString())
.--------------------------------------.
| a  | apple      | Some longer string |
| b  | banana     | hi                 |
| c  | carrot     | meow               |
| e  | elephants  |                    |
'--------------------------------------'

Columns can also have different alignments

table
  .setAlign(2, Table.RIGHT)
  .setAlign(1, Table.CENTER)

console.log(table.toString())
.--------------------------------------.
| a  |   apple    | Some longer string |
| b  |   banana   |                 hi |
| c  |   carrot   |               meow |
| e  | elephants  |                    |
'--------------------------------------'

We can also remove the borders

table
  .setHeading('#', 'Fruit', 'Thing')
  .setAlign(1, Table.RIGHT)
  .setAlign(2, Table.CENTER)
  .removeBorder()
  
console.log('' + table)
  #      Fruit            Thing
 ---- ------------ --------------------
  a         apple   Some longer string
  b        banana           hi
  c        carrot          meow
  e     elephants

Install

With npm

npm install ascii-table

License

(The MIT License)

Copyright (c) 2013 Beau Sorensen

Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the 'Software'), to deal in the Software without restriction, including without limitation the rights to use, copy, modify, merge, publish, distribute, sublicense, and/or sell copies of the Software, and to permit persons to whom the Software is furnished to do so, subject to the following conditions:

The above copyright notice and this permission notice shall be included in all copies or substantial portions of the Software.

THE SOFTWARE IS PROVIDED 'AS IS', WITHOUT WARRANTY OF ANY KIND, EXPRESS OR IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE SOFTWARE.

About

Ascii Tables for JS

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published