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

webtreemap-cdt

v3.2.1

Published

treemap visualization

Downloads

6,504

Readme

webtreemap

Fork of https://github.com/evmar/webtreemap

Usage

Web

The data format is a tree of Node, where each node is an object in the shape described at the top of tree.ts.

Add the contents of [src/styles-to-add.css] to your stylesheets.

<script src='webtreemap.js'></script>
<script>
// Container must have its own width/height.
const container = document.getElementById('myContainer');
// See typings for full API definition.
webtreemap.render(container, data, options);

Options

| Option | Type | Default | | ------------- |:-------------:| -----:| | padding | [number, number, number, number] | [14, 3, 3, 3] | | lowerBound | number | 0.1 | | applyMutations | (node: Node) => void | () => void | | caption | (node: Node) => string | (node) => node.id || '') | | showNode | (node: Node, width: number, height: number) => boolean | (, width, height) => (width > 20) && (height >= options.padding[0]) | | showChildren | (node: Node, width: number, height: number) => boolean | (, width, height) => (width > 40) && (height > 40) |

| Option | Description | | ------------- |:-------------:| | padding | In order: padding-top, padding-right, padding-bottom, padding-left of each node | lowerBound | Lower bound of ratio that determines how many children can be displayed inside of a node. Example with a lower bound of 0.1: the total area taken up by displaying child nodes of any given node cannot be less than 10% of the area of its parent node. | applyMutations | A function that exposes a node as an argument after it's dom element has been assigned. Use this to add inline styles and classes. Example: (node) => { node.dom.style.color = 'blue' } | caption | A function that takes a node as an argument and returns a string that is used to display as the caption for the node passed in. | showNode | A function that takes a node, its width, and its height, and returns a boolean that determines if that node should be displayed. Fires after showChildren. | showChildren | A function that takes a node, its width, and its height, and returns a boolean that determines if that node's children should be displayed. Fires before showNode.

Development

~The modules of webtreemap can be used both from the web and from the command line, so the build has two layers. The command line app embeds the output of the build into its output so it's a bit confusing.~

Run yarn run build to compile TS -> build/JS (as esm) and then run rollup to make the dist (iife).

Run yarn run build:demo to create a public/index.html demo page.

Run yarn watch to use entr to do build:demo on a watchloop.

License

webtreemap is licensed under the Apache License v2.0. See LICENSE.txt for the complete license text.

Also

  • I like the breadcrumb navigation in the plotly treemap. https://plotly.com/javascript/treemaps/
  • The imported path in rollup-plugin-visualizer is nice, but the interation aint. eg1, eg2