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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@visual-analytics-components/graph-component

v0.3.0

Published

A network visualization component for disaggregated visualization.

Downloads

3

Readme

graph-vac

A network visualization component for disaggregated visualization.

Configuration Options

  • id (string): The instance identifier for this component.
  • isLayoutSupported (boolean, optional): Whether this component should present layout controls.
  • attemptInitialLayout (boolean, optional): If the data is unpositioned, should this component attempt an initial 2D layout of the graph data.
  • is3DSupported (boolean, optional): A flag indicating whether this visual should expose a control allowing the user to select either 2D or 3D views.
  • emitsViewportHighlights (boolean, optional): A flag indicating whether this visual should emit events for when vertices are highlighted via hover actions.
  • receivesViewportHighlights (boolean, optional): A flag indicating whether this visual should accept events for when vertices are highlighted to synchronize highlights.
  • renderSettings: (TensorGraphRenderSettings, optional): A settings object specific to rendering.

TensorGraphRenderSettings

  • constantEdgeWidth (boolean, optional): a flag indicating whether edges should have a consistent width vs a width variable on edge weight (default=true).
  • cornerAxes (boolean, optional): a flag indicating whether the axes guides should be rendered in the corner (e.g. minimap-style).
  • drawAxes (boolean, optional): a flag indicating whether the axes should be drawn at all (default=true).
  • drawEdges (boolean, optional): A flag indicating whether to draw the edges of the graph data (default=false).
  • drawNodes (boolean, optional): A flag indicating whether to draw the vertices of the graph data (default=true).
  • edgeAlpha (number, optional): A number between [0-1] indicating the edge opacity.
  • edgeAntialias (boolean, optional): A flag indicating whether to use antialiasing when rendering edges (default=false).
  • edgeDepthWrite (boolean, optional): A flag indicating whether to use depth-writing when rendering edges (default=false).
  • edgeMaxWidth (number, optional): The maximum width of edges to render.
  • edgeMinWidth (number, optional): The minimum width of edges to render.
  • hideDeselected (boolean, optional): Whether to hide/occlude deselected vertices (default=false).
  • hideEdgesOnMove (boolean, optional): A flag indicating whether to hide edges when moving the graph (default=false).
  • hideNodesOnMove (boolean, optional): A flag indicating whether to hide nodes when moving the graph (default=false).
  • interpolationTime (boolean, optional): Interpolation time to use when animating between positions.
  • is3D (boolean, optional): Whether to render in 3D mode (default=false).
  • nodeMaxRadius (number, optional): The minimum rendering radius of the nodes.
  • nodeMinRadius (number, optional): The maximum rendering radius of the nodes.
  • nodeOutline (boolean, optional): A flag indicating whether to render node outlines.