
Research
Security News
The Growing Risk of Malicious Browser Extensions
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Tree or binary tree printer, print any tree to terminal or debug window
tree-dump
Prints a tree structure to the console. Can print a binary tree or a tree with any number of children.
Install
npm install tree-dump
Print a non-binary tree
import {printTree} from 'tree-dump';
const str = 'start' + printTree('', [
(tab) => 'line 1',
() => '',
(tab) => 'line 2' + printTree(tab, [
(tab) => 'line 2.1',
(tab) => 'line 2.2',
])
(tab) => 'line 3',
]);
console.log(str);
// start
// ├── line 1
// │
// ├── line 2
// │ ├── line 2.1
// │ └── line 2.2
// └── line 3
Print a binary tree
import {printBinary} from 'tree-dump';
const str =
'Node' +
printBinary('', [
(tab) => 'left' + printBinary(tab, [
() => 'left 1',
() => 'right 1',
]),
(tab) => 'right' + printBinary(tab, [
() => 'left 2',
() => 'right 2',
]),
]);
console.log(str);
// Node
// ← left
// ← left 1
// → right 1
// → right
// ← left 2
// → right 2
FAQs
Tree or binary tree printer, print any tree to terminal or debug window
The npm package tree-dump receives a total of 3,827,190 weekly downloads. As such, tree-dump popularity was classified as popular.
We found that tree-dump demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer 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.
Research
Security News
Socket researchers uncover how browser extensions in trusted stores are used to hijack sessions, redirect traffic, and manipulate user behavior.
Research
Security News
An in-depth analysis of credential stealers, crypto drainers, cryptojackers, and clipboard hijackers abusing open source package registries to compromise Web3 development environments.
Security News
pnpm 10.12.1 introduces a global virtual store for faster installs and new options for managing dependencies with version catalogs.