pretty-tree
Make colorful trees out of JSON objects using archy
Last updated 11 years ago by mafintosh .
Repository · Bugs · Original npm · Tarball · package.json
$ cnpm install pretty-tree 
SYNC missed versions from official npm registry.

pretty-tree

Make colorful trees out of JSON objects using archy

npm install pretty-tree

Usage

var tree = require('pretty-tree');

var str = tree({
	label: '(root)', // the label of this node
	nodes: [{
		label: '(child)',
		leaf: {
			hello: 'world',
			hej: 'verden'
		}
	}]
});

console.log(str);

The above example results in the following output:

example

The node passed to tree can contain the following options

tree({
	label: '(child)', // an optional lable of this node
	leaf: {           // set this if you want to print an object
		key: value,
		...
	},
	nodes: [          // or put in some child nodes
		child_nodes_with_same_structure
	]
})

If you want to disable coloring (even when the terminal is a tty) use tree.plain(options)

License

MIT

Current Tags

  • 1.0.0                                ...           latest (11 years ago)

5 Versions

  • 1.0.0                                ...           11 years ago
  • 0.2.0                                ...           12 years ago
  • 0.1.2                                ...           12 years ago
  • 0.1.1                                ...           12 years ago
  • 0.1.0                                ...           12 years ago
Maintainers (1)
Downloads
Today 0
This Week 0
This Month 0
Last Day 0
Last Week 0
Last Month 1
Dependencies (2)
Dev Dependencies (0)
None
Dependents (1)

Copyright 2013 - present © cnpmjs.org | Home |