0.0.3 • Published 9 years ago

terminal-tree v0.0.3

Weekly downloads
6
License
MIT
Repository
github
Last release
9 years ago

terminal-tree

screenshot

Installation

$ npm i -g terminal-tree

CLI

$ terminal-tree example.json

Output Markdown from 'tree' command.

$ tree -J | terminal-tree -Tm

for Node.js

var tree = require("terminal-tree");

var data = {
  test: [1, 2, 3, 4],
  foo: "bar"
};

console.log(tree(data, {
  symbol: true,
  highlight: true,
  padding: 1
}));

API

License

MIT