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

materialized-tree

v1.3.1

Published

build trees using the materialized path pattern

Downloads

18

Readme

Materialized Tree

CircleCI npm version Dependabot Status

Store a tree in any kind of database (SQL/document/K-V) using the materialized path pattern, which makes your queries fast and your data model simple, unlike some of the alternatives:

  • nested tree is insanely difficult to insert nodes into, and to move/delete them around
  • adjacency list (parent_id => id) is quick and easy to deal with, until you want to pull out the full tree path (which you have to do for something like a comment system), at which point you'll be dealing with big, complex recursive queries that take too long

The materialized path pattern allows you to deal with individual items easily just like with adjacency list, except now it also fetches trees quickly!

  • you can CRUD on any element by id
  • you can fetch subtrees of any element (even the root) quickly
  • the structure of the path allows every single one of these operations to be dead simple
  • this pattern does not require your data to be structured in any specific way - you can use the path as the primary key, or use it as part of a compound index, etc.

Unlike other implementations of the materialized path pattern (across many languages), this library:

  • is suited for sorting by path, which is useful for a threaded comment system (think Disqus)
  • can sort both ways - efficiently at that - unlike other libraries that only allow you to sort one-way
  • does not involve padding - even when sorting from the reverse direction
  • is suited for use in distributed environment, thanks to the UUID-based paths
  • saves space compared to other UUID-based implementations
  • is simple and data store-agnostic by nature
  • is pretty darn fast!

Sample Usage

const path = require('materialized-tree')
const parent = path() // modify it as you'd like before saving it
const child = path(parent) // direct descendant of the parent

db.save([parent, child]) // store it however you'd like!

Or, if you want a more compact representation, you can store path as a 12 byte binary:

const path = require('materialized-tree')
const parent = path(null, true) // entirely immutable
const child = path(parent, true) // parent is unchanged

And then, you can query it as follows:

-- show comments in the order they were created
SELECT * FROM comments ORDER BY path LIMIT 25;
-- ...or sort by "new"
SELECT * FROM comments ORDER BY htap LIMIT 25;
-- select subtree of a comment (you can switch the order: path <-> htap)
SELECT * FROM comments WHERE path LIKE 'pCBmVvtKoigp9Zv+%';

For further usage, please see /test.