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

@mcordingley/rb-tree

v0.0.0

Published

A red-black tree crafted for everyone, but with Vuex and friends in mind.

Downloads

2

Readme

RB Tree

Build Status

Maintains a collection in sorted order. Use this whenever you would otherwise have a collection that gets sorted every time that a new value is added. Can be used to store elements of any type, be they objects or even identifiers for objects that are stored elsewhere. See the API documentation below for examples that store and retrieve object IDs, but keep the collection sorted according to a property on the objects themselves.

Built for use with Vuex, but it should be usable anywhere. If this doesn't work with your favorite tool, please file an issue with all of the details. Documented pull requests will be merged faster. :)

Getting Started

If you're using NPM, install @mcordingley/rb-tree. If you instead want a browser global, just grab dist/RBTree.js and drop it into a script tag. dist/RBTree.js is built in UMD style for use with CommonJS, AMD, etc.

If you would instead prefer ES6 style imports, simply import from src/RBTree.js. RBTree is the default and only export.

API Documentation

For storing primitive values with an inherent order, just create a new tree. Inserted values will be compared directly for ordering purposes.

const tree = new RBTree();

If the sorting logic is more complex or if the inserted values are keys to objects stored elsewhere, pass a comparator function into the constructor. In this example, the stored values are keys for objects stored in another index. The objects are retrieved from that other index and the property on which the object keys are to be sorted is compared.

const tree = new RBTree((a, b) => {
    const aValue = state.fooById[a].bar,
        bValue = state.fooById[b].bar;

    if (aValue < bValue) return -1;
    else if (aValue > bValue) return 1;
    else return 0;
});

New values may be inserted with the insert method. Keeping with the above example of storing keys to reference objects stored elsewhere, the value passed to insert should be the key to store. Values inserted that compare as being equal according to the comparator function are considered to be duplicates and are not inserted.

tree.insert(foo.id);

Likewise, values may be removed.

tree.delete(foo.id);

The tree exposes a handful of properties and methods that may be used to query its contents.

The length property maintains a count of the number of elements currently in the tree.

const elementCount = tree.length;

The tree may be queried to see if it contains a value with contains.

const hasElement = tree.contains(foo.id);

The minimum and maximum values can be found with methods of the same name. Pass an integer to instead receive an array of the top or bottom values in the tree, sorted in order from most extreme to least.

const maxValue = tree.maximum(),
    minValue = tree.minimum();

const topFive = tree.maximum(5);

The values of the tree are accessible as an array via the values method. The values will be in sorted order. This is a good starting point for using array-based methods, such as filter, each, and map.

const elementArray = tree.values();

To efficiently find values that fall within a range, call the range method with values that define the start and end of the desired range. These values may also be replaced with functions that will be called with only the current value and should return a negative, zero, or positive value to show if the current value is before, directly on, or after the boundary, respectively.

const subArray = tree.range(min.id, id => {
    if (foo(id)) return -1; // id is for a record less than the boundary
    else if (bar(id)) return 1; // id is for a record greater than the boundary
    else return 0; // id lies directly on the boundary and will be included
});