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 🙏

© 2026 – Pkg Stats / Ryan Hefner

graphology-layout-physics

v0.0.4

Published

Vis-style physics layout (FA2 repulsion + Hooke springs + velocity damping) for graphology.

Downloads

63

Readme

graphology-layout-physics

Vis-style physics layout for graphology: FA2 linear repulsion, Hooke springs with rest length, and velocity damping integration (à la vis-network).

Install

pnpm add graphology-layout-physics
# peer: graphology

Synchronous layout

import Graph from 'graphology';
import layoutPhysics from 'graphology-layout-physics';

const graph = new Graph();
// nodes must have x, y set beforehand

const positions = layoutPhysics(graph, {
  iterations: 500,
  settings: layoutPhysics.inferSettings(graph)
});

layoutPhysics.assign(graph, {iterations: 500});

Worker (continuous)

Uses a Blob URL worker (createWorker(fn)), same pattern as graphology-layout-forceatlas2.

import LayoutPhysics from 'graphology-layout-physics/worker';

const layout = new LayoutPhysics(graph, {settings: {damping: 0.4}});
layout.start();
layout.stop();
layout.isStabilized();
layout.kill();

Force model notes

  • charge (q = 1 + \sum w): used for repulsion and central gravity strength (FA2-style).
  • mass (inertial, default 1, or node attribute mass): used only in (a = (F - \texttt{damping}\cdot v) / m).

Default settings

| Setting | Default | Role | |---------|---------|------| | springLength | 100 | Edge rest length | | springConstant | 0.08 | Spring stiffness | | scalingRatio | 10 | Linear repulsion strength | | gravity | 0.01 | Central gravity | | damping | 0.4 | Velocity damping | | timestep | 0.5 | Integration step | | maxVelocity | 50 | Speed clamp | | minVelocity | 0.75 | Stabilization threshold | | barnesHutOptimize | false | O(n log n) repulsion | | autoStop | true | Worker stops when stabilized |

Debug / energy diagnostics

Energy tooling lives on a separate entry so production imports stay clean:

import layoutPhysics from 'graphology-layout-physics';
import diagnose, {
  computeGraphEnergy
} from 'graphology-layout-physics/debug';

// Production layout
layoutPhysics.assign(graph, {
  iterations: 500,
  settings: layoutPhysics.inferSettings(graph)
});

// Debug: same options shape — swap the import to sample energy each step
const report = diagnose(graph, {
  iterations: 500,
  settings: diagnose.inferSettings(graph)
  // sampleEvery: 10  // optional downsample for large graphs
});
// report.samples, report.e0, report.eFinal, report.stabilized, ...

diagnose.assign(graph, {iterations: 500}); // also writes positions back
const e = computeGraphEnergy(graph, {settings: {damping: 0.4}});

Energy convergence diagnostic

Running npm test evaluates a deterministic 128-node graph via graphology-layout-physics/debug and writes test-results/energy-convergence.svg. The SVG plots total mechanical energy and maximum node speed for every iteration, together with stabilization and energy-monotonicity statistics.