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

@tscircuit/fastforce

v0.0.2

Published

Fast force-directed graph solving with support for segment-applied forces.

Readme

@tscircuit/fastforce

Fast force-directed graph solving with support for segment-applied forces.

View online

Installation

npm install @tscircuit/fastforce

Usage

import { ForceRelaxationSolver } from "@tscircuit/fastforce"
import type { ForceRelaxationProblem } from "@tscircuit/fastforce"

const problem: ForceRelaxationProblem = {
  bounds: { minX: 0, minY: 0, maxX: 100, maxY: 100 },
  boundaryPadding: 10,
  layerIds: ["0", "1"],

  entities: {
    points: [
      {
        pointId: "p1",
        position: { x: 0, y: 20 },
        movable: false,
        radius: 0,
        layerIds: ["0"],
      },
      {
        pointId: "p2",
        position: { x: 50, y: 20 },
        movable: true,
        radius: 0,
        layerIds: ["0", "1"],
      },
    ],
    segments: [
      {
        segmentId: "s1",
        startPointId: "p1",
        endPointId: "p2",
        width: 2,
        layerId: "0",
        fixedLength: false,
        fixedOrientation: false,
      },
    ],
  },

  interactions: {
    segSegRepel: {
      strength: 1,
      exponentialDecay: 0.5,
      overlapMultiplier: 5,
      minSeparation: 10,
    },
    pointSegRepel: {
      strength: 1,
      exponentialDecay: 0.5,
      overlapMultiplier: 5,
      minSeparation: 10,
    },
    boundsKeepIn: {
      strength: 2,
      exponentialDecay: 1,
      overlapMultiplier: 10,
    },
    fixedLengthCorrection: {
      strength: 1,
      exponentialDecay: 0,
    },
    fixedOrientationCorrection: {
      strength: 5,
      exponentialDecay: 0,
    },
  },

  solve: {
    maxSteps: 300,
    stepSize: 0.1,
    epsilonMove: 0.01,
    maxMovePerStep: 2,
    friction: 0.1,
    relaxationSteps: 100,
  },
}

const solver = new ForceRelaxationSolver(problem)

// Run until solved or max iterations reached
solver.solve()

// Access updated point positions
for (const point of problem.entities.points) {
  console.log(`${point.pointId}: (${point.position.x}, ${point.position.y})`)
}

API

ForceRelaxationSolver

The main solver class. Extends BaseSolver from @tscircuit/solver-utils.

  • constructor(problem: ForceRelaxationProblem) - Create a new solver
  • solve() - Run the solver until convergence or max iterations
  • step() - Run a single iteration
  • visualize() - Returns a GraphicsObject for visualization

ForceRelaxationProblem

Configuration object with the following properties:

| Property | Description | | ------------------- | ------------------------------------------------------ | | bounds | Axis-aligned bounding box { minX, minY, maxX, maxY } | | boundaryPadding | Inset from bounds for keep-in constraints | | layerIds | Array of layer identifiers | | entities.points | Array of point entities | | entities.segments | Array of segment entities | | interactions | Force interaction parameters | | solve | Solver parameters |

Solver Parameters

| Parameter | Description | Default | | ----------------- | ------------------------------------- | ------- | | maxSteps | Maximum iterations | - | | stepSize | Integration step size | - | | epsilonMove | Convergence threshold | - | | maxMovePerStep | Maximum movement per step | - | | friction | Velocity damping (0-1, 1=no momentum) | 1.0 | | relaxationSteps | Steps to linearly reduce forces | 0 |