clifflite
CLI output formatting tools: "Your CLI Formatting Friend".
Installing clifflite
[sudo] npm install clifflite
Usage
There are a number of methods available in Cliff for common logging tasks in command-line tools. If you're looking for more usage, checkout the [examples in this repository][3]:
- Logging rows of data
- Inspecting Objects
Logging rows of data
cliff.stringifyRows(rows[, colors])
Takes a set of Arrays and row headers and returns properly formatted and padded rows. Here's a sample:
var cliff = ;var rows ='Name' 'Flavor' 'Dessert''Alice' 'cherry' 'yogurt''Bob' 'carmel' 'apples''Joe' 'chocolate' 'cake''Nick' 'vanilla' 'ice cream';console;
cliff.putRows(level, rows[, colors])
The putRows
method is a simple helper that takes a set of Arrays and row headers and logs properly formatted and padded rows (logs stringifyRows
to winston). Here's a quick sample:
var cliff = ;var rows ='Name' 'Flavor' 'Dessert''Alice' 'cherry' 'yogurt''Bob' 'carmel' 'apples''Joe' 'chocolate' 'cake''Nick' 'vanilla' 'ice cream';cliff;
The resulting output on the command-line would be:
cliff.stringifyObjectRows(objs, properties[, colors]) used to be: cliff.rowifyObjects(objs, properties, colors)
Takes a set of Objects and the properties to extract from them and returns properly formatted and padded rows. Here's a sample:
var cliff = ;var objs = obj =name: "bazz"address: "1234 Nowhere Dr.";for var i = 0; i < 10; i++objs;console;
cliff.putObjectRows(level, objs, properties[, colors])
Takes a set of Objects and the properties to extract from them and it will log to the console. (it prints stringifyObjectRows
with winston). Here's a sample:
var cliff = ;var objs = obj =name: "bazz"address: "1234 Nowhere Dr.";for var i = 0; i < 10; i++objs;cliff;
Colors Parameter
The colors
parameter is an array that colors the first row. It uses the [colors.js][2]. You can use any of those.
var cliff = ;var rows ='Name' 'Flavor' 'Dessert''Alice'grey 'cherry'cyan 'yogurt'yellow'Bob'magenta 'carmel'rainbow 'apples'white'Joe'italic 'chocolate'underline 'cake'inverse'Nick'bold 'vanilla' 'ice cream';cliff;
The resulting output on the command-line would be:
Run Tests
All of the cliff tests are written in [vows][4], and cover all of the use cases described above.
npm test
Motivation
Clifflite is the swiss army knife of CLI formatting tools. It is based on highly flexible and powerful libraries:
- colors: Get colors in your node.js console like what