Security News
NVD Backlog Tops 20,000 CVEs Awaiting Analysis as NIST Prepares System Updates
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
object-treeify
Advanced tools
The object-treeify npm package is designed to convert JavaScript objects into tree-like string representations. This can be particularly useful for visualizing hierarchical data structures, debugging, or logging purposes. It allows developers to easily generate a textual representation of an object's structure, making it more readable and understandable.
Basic tree generation
This feature allows you to generate a basic tree structure from a JavaScript object. The code sample demonstrates how to convert a nested object into a tree-like string representation, categorizing items under 'fruits' and 'vegetables'.
const treeify = require('object-treeify');
const data = {
fruits: {
apple: {},
banana: {},
cherry: {}
},
vegetables: {
tomato: {},
cucumber: {},
carrot: {}
}
};
console.log(treeify(data));
Customizing options
This feature demonstrates how to customize the appearance of the tree structure using various options. The code sample shows how to adjust the spacing, joining character, and the prefixes used for keys to alter how the tree is displayed.
const treeify = require('object-treeify');
const data = {
animals: {
mammals: {
dog: {},
cat: {}
},
birds: {
parrot: {},
sparrow: {}
}
}
};
const options = {
join: '\n',
spacerNoNeighbour: ' ',
spacerNeighbour: '│ ',
keyNoNeighbour: '└─ ',
keyNeighbour: '├─ '
};
console.log(treeify(data, options));
Archy is a package that also allows for the visualization of hierarchical data as a tree structure in the console. Compared to object-treeify, archy focuses more on simplicity and ease of use but might not offer the same level of customization for the tree representation.
Treeify is another npm package that converts objects into tree structures. While it shares a similar purpose with object-treeify, its approach and customization options may differ, offering users an alternative way to visualize their object hierarchies.
Stringify Object as tree structure
{
oranges: {
'mandarin': { ├─ apples,
clementine: null, │ ├─ gala
tangerine: 'so cheap and juicy!' -=> │ └─ pink lady
} └─ oranges
}, └─ mandarin
apples: { ├─ clementine
'gala': null, └─ tangerine: so cheap and juicy!
'pink lady': null
}
}
Project was inspired by treeify and works almost identical. However the algorithm is much shorter and faster, works without recursion and is very memory efficient. Furthermore the output can be sorted using a custom comparator function.
$ npm install --save object-treeify
const treeify = require('object-treeify');
treeify({
oranges: {
mandarin: {
clementine: null,
tangerine: 'so cheap and juicy!'
}
},
apples: {
gala: null,
'pink lady': null
}
}, {/* options */});
// =>
// ├─ apples
// │ ├─ gala
// │ └─ pink lady
// └─ oranges
// └─ mandarin
// ├─ clementine
// └─ tangerine: so cheap and juicy!
Type: boolean
Default: true
By default a single string is returned. Can be set to false
to instead return an array containing lines.
Type: string
Default:
Prefix for depth level when no further neighbour is present.
Type: string
Default: │
Prefix for depth level when a further neighbour is present.
Type: string
Default: └─
Prefix for key when no further neighbour is present.
Type: string
Default: ├─
Prefix for key when a further neighbour is present.
Type: function
Default: (a, b) => a.localeCompare(b)
Function that defines the key sort order.
More examples can be found in the tests.
FAQs
Stringify Object as tree structure
We found that object-treeify demonstrated a not healthy version release cadence and project activity because the last version was released 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.
Security News
NVD’s backlog surpasses 20,000 CVEs as analysis slows and NIST announces new system updates to address ongoing delays.
Security News
Research
A malicious npm package disguised as a WhatsApp client is exploiting authentication flows with a remote kill switch to exfiltrate data and destroy files.
Security News
PyPI now supports digital attestations, enhancing security and trust by allowing package maintainers to verify the authenticity of Python packages.