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

arboreal

v0.0.2

Published

Javascript tree traversal and manipulation library

Downloads

446

Readme

Arboreal.js

A micro-library for traversing and manipulating tree-like data structures in JavaScript; works with both node.js and the browser.

Installation

In node.js:

git clone git://github.com/afiore/arboreal
npm install

To use it in the browser, just load lib/arboreal.js in a script tag.

Usage

Arboreal provides a set of methods for parsing, manipulating, and traversing tree like data structures. A tree can be created from scratch and then extended with child elements.

var tree = new Arboreal()

tree
  .appendChild()
  .appendChild()
  .children[0]
     .appendChild()
     .appendChild();

For each child node, Arboreal will automatically assign an id string representing the depth and the index the position of the node within the tree structure.

tree.children[0].children[1].id

// => 0/0/1

Alternatively, Arboreal can also parse an existing object into a tree (though it will need to know the name of the 'children' attribute).

var wikipediaJsCategory = {
  category: 'JavaScript',
  subcategories: [
    {category: 'Ajax (programming)'},
    {category: 'JavaScript engines'},
    {category: 'JavaScript programming languages family',
     subcategories: [{
       category: 'JavaScript dialect engines'
     }]
    },
    {category: 'JavaScript based calendar components'},
    {category: 'JavaScript based HTML editors'}
  ]
};

var tree = Arborel.parse(wikipediaJsCategory, 'subcategories');

Also several children (or even the whole tree) can be added at the same time (syntax is similar as parse)

var tree = new Arboreal();
tree.children[1].appendChildren({category:'C#', subitems:[{category:'WPF'}]}, "subitems" );

Traversal

An Arboreal object can be traversed either upwards or downwards.

function iterator (node) {
  var depth = "", i;
  for (i = 1; i <= node.depth; i++) depth += ">>";
  console.info([depth, node.data.category].join(" "));
}

tree.traverseDown(iterator);

// =>   JavaScript
//      >> Ajax (programming)
//      >> JavaScript engines
//      >> JavaScript produgramming languages family
//      >>>> JavaScript dialect engines
//      >> JavaScript based calendar components
//      >> JavaScript based HTML editors


tree.children[2].traverseUp(iterator);

//  => >> JavaScript produgramming languages family
//     >>>> JavaScript dialect engines
//      JavaScript
//     >> Ajax (programming)
//     >> JavaScript engines
//     >> JavaScript based calendar components
//     >> JavaScript based HTML editors

Note that in both the traverseDown and the traverseUp methods, the value of this in the iterator is bound to the value of the currently traversed node. Our iterator function can in fact be rewritten as:

function iterator () {
  var depth = "", i;
  for (i = 1; i <= this.depth; i++) depth += ">>";
  console.info([depth, this.data.category].join(" "));
}

Arboreal object can be iterated up to the root using method 'bubbleUp':

tree.children[2].children[0].bubbleUp(iterator)

//  => >>>> JavaScript dialect engines
//     >> JavaScript programming languages family
//     JavaScript

Search

In order to search for a single node into an arboreal object, one can use the find method.

tree.find(function (node) {
  return (/calendar/).test(node.data.category)
}).data.category;

// =>  JavaScript based calendar components

The find method will also accept a string as an argument. In that case, it will try to find a node by id.

tree.find("0/2/0").data.category

// => JavaScript dialect engines

Manipulation

While traversing a tree, nodes can be deleted by calling the remove method on the node object bound to the iterator function.

tree.length;

// => 7

tree.traverseDown(function (item) {
  var toDelete = 'JavaScript programming languages family';
  if (item.data.category === toDelete) {
    this.remove();
  }
});

tree.length;

// 5

Testing

Arboreal test suite uses Jasmine. To run it in node.js..

cd /home/me/code/arboreal && npm test

To run it in the browser, just open the test/index.html

Minfication

A minified version of Arboreal can be generated by running

node make.js