
Security News
OWASP 2025 Top 10 Adds Software Supply Chain Failures, Ranked Top Community Concern
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.
oo-ascii-tree
Advanced tools
Renders ASCII trees from an object-oriented object graph.
Features:
Roadmap:
$ npm i oo-ascii-tree
import { AsciiTree } from '../lib';
const tree = new AsciiTree('root');
tree.add(new AsciiTree('child1'));
tree.add(new AsciiTree('child2',
new AsciiTree('grandchild1'),
new AsciiTree('grandchild2')
));
tree.add(new AsciiTree('child3'));
tree.printTree();
Prints the following tree to stdout:
root
├── child1
├─┬ child2
│ ├── grandchild1
│ └── grandchild2
└── child3
You can also subclass AsciiTree to encapsulate some model. The following
example declares a TitleNode which formats a title with "====" underline and a
KeyValueNode which formats text as key: value:
class TitleNode extends AsciiTree {
constructor(title: string, ...children: AsciiTree[]) {
super([
title.toLocaleUpperCase(),
'='.repeat(title.length)
].join('\n'), ...children);
}
}
class KeyValueNode extends AsciiTree {
constructor(key: string, value: string) {
super(`${key}: ${value}`);
}
}
const tree = new AsciiTree();
tree.add(new TitleNode('props',
new KeyValueNode('shape', 'circle'),
new KeyValueNode('color', 'red'),
new KeyValueNode('background', 'blue')
));
tree.add(new TitleNode('dimensions',
new KeyValueNode('width', '30px'),
new KeyValueNode('height', '40px')
));
Will emit the following output:
PROPS
=====
├── shape: circle
├── color: red
└── background: blue
DIMENSIONS
==========
├── width: 30px
└── height: 40px
The AsciiTree class represents a tree/node/subtree. Each node in the tree
includes text and children and can be printed to a Writable via
printTree(stream).
new AsciiTree([text[, children...]])Creates a new node with the specified text and optionally adds child nodes to it.
If text is not specified, the children of this node will all be considered
roots (level 0) and the root node will get level -1. This allows modeling trees
with a single root or with multiple roots.
asciiTree.add(children...)Adds one or more children to the node.
asciiTree.printTree([writableStream])Emits an ASCII print out of the tree to the specified Writable stream. The
default is process.stdout.
asciiTree.toString()Returns a string representation of the tree.
asciiTree.textThe node's text. If the text contains multiple line separated by \n, new lines
will be aligned to the node's indentation.
asciiTree.childrenReturns a copy of the array of children of this node. Use asciiTree.add to add
children.
asciiTree.rootReturns true if this is the root node.
asciiTree.lastReturns true if this is the last child of a node.
asciiTree.levelReturns the node level. Root node(s) will have a level of 0.
If the root AsciiTree has text, it's level will be 0 and its children will get
level 1. If the root AsciiTree does not have text, it's level will be -1 and
all it's children will get level 0.
asciiTree.emptyReturns true if this node does not have any children.
asciiTree.ancestorsReturns all the nodes that are ancestors of this node ordered from root to the direct parent.
Distributed under the Apache License, Version 2.0.
FAQs
object-oriented ascii tree renderer
The npm package oo-ascii-tree receives a total of 301,418 weekly downloads. As such, oo-ascii-tree popularity was classified as popular.
We found that oo-ascii-tree demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 2 open source maintainers collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
OWASP’s 2025 Top 10 introduces Software Supply Chain Failures as a new category, reflecting rising concern over dependency and build system risks.

Research
/Security News
Socket researchers discovered nine malicious NuGet packages that use time-delayed payloads to crash applications and corrupt industrial control systems.

Security News
Socket CTO Ahmad Nassri discusses why supply chain attacks now target developer machines and what AI means for the future of enterprise security.