npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

tree-tools

v1.4.4

Published

Tools to manage deeply nested collection tree structures

Downloads

33

Readme

Tree-Tools

Tools to manage deeply nested collection tree structures.

See the API reference for a full list of functionality.

Goals:

  • Provide a simple API to manipulate and operate on tree structures
  • Closely mirror Lodash's API wherever possible to minimize confusion
  • No dependencies (except Lodash)

Install (NodeJS)

Install via

npm install tree-tools

Then just use as

var treeTools = require('tree-tools');

treeTools.flatten(treeTools.find(tree, {path: '/bar/baz'}));

Install (AngularJS)

  1. Include dist/ngTreeTools.js somewhere in your build chain
  2. Add ngTreeTools as a module in your main angular.module('app', [modules]) list
  3. Require the module as TreeTools in your controller e.g. app.controller('myController', function($scope, TreeTools) { // Controller // })

API

In all the examples below the example tree structure is similar to the main test case.

treeTools.find(tree, query, options)

Find a single node deeply within a tree structure. Query can be any valid Lodash matching object or a function.

treeTools.find(tree, {path: '/bar/baz'});

Since this function is really just a convenience wrapper around parents() see that function definition for available options.

treeTools.filter(tree, query, options)

Return a copy of a tree while filtering nodes. Query can be any valid Lodash matching object or a function.

treeTools.find(tree, (node, index) => matchingExpression);

Options are:

| Option | Type | Default | Description | |-------------|-----------------|--------------|-------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check |

treeTools.flatten(tree)

Return all branches of a tree as a flat array. The array is returned as a shallow copy, allowing mutation via forEach or map iterators.

treeTools.flatten(treeTools.find(tree, {path: '/bar/baz'}));

Options are:

| Option | Type | Default | Description | |-------------|-----------------|--------------|-------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check |

treeTools.parents(tree, query, options)

Utility function to deep search a tree structure for a matching query and find parents up to the given query. If found this function will return an array of all generations with the found branch as the last element of the array.

treeTools.parents(tree, {path: '/bar/baz'})

Options are:

| Option | Type | Default | Description | |-------------|-----------------|--------------|-------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check |

treeTools.children(tree, query, options)

Utility function to deep search a tree structure for a matching query and find all children after the given query. If found this function will return an array of all child elements NOT including the query element.

treeTools.children(tree, {path: '/foo'});

Options are:

| Option | Type | Default | Description | |-------------|-----------------|--------------|-------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check |

treeTools.hasChildren(branch, options)

Utility function to determines whether a given node has children.

treeTools.hasChildren(someBranch); // Returns a boolean

Options are:

| Option | Type | Default | Description | |-------------|-----------------|--------------|-------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check |

treeTools.hasSome(tree, query)

Utility function to determine if an item matching query exists deep within a given tree.

treeTools.hasSome(tree, {someKey: someValue});
treeTools.hasSome(tree, (v, k) => { ... });

treeTools.resolve(tree, options)

Recursively walk a tree evaluating all functions (promise compatible) and inserting their values. Should a node return a promise it will be waited on before evaluating it along with its children, recursively.

treeTools.resolve(complexTreeWithPromises)
	.then(tree => {...})

Options are:

| Option | Type | Default | Description | |---------------|-------------------|-------------------| ---------------------------------------------------------------------------------------------------------------------------------------------| | childNode | String or Array | "children" | How to discover child nodes, can be a single key or an array of keys to check | | clone | Boolean | false | Clone the tree before resolving it, this keeps the original intact but costs some time while cloning, without this the input will be mutated | | attempts | Number | 5 | How many times to recurse when resolving promises-within-promises | | isPromise | Function | _.isFunction | Function used to recognise a promise-like return when recursing into promises | | isSplice | Function | See code | Support splicing arrays (arrays are collapsed into their parents rather than returned as is) | | wrapper | Function | Promise.resolve | Wrap the promise in this function before resolving. Called as (nodeFunction, path, tree) |

treeTools.sortBy(tree, propertyName)

Utility function to sort tree by specific property or an array of properties. propertyName can be a string or an array of strings.

// Sort an outer array of families with all children in `name` order
treeTools.sortBy(families, 'name');