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

psychic-potato

v0.1.4

Published

Fit text inside containers by finding the largest font size where every span stays within its parent div.

Readme

psychic-potato

A single browser function that fits text inside containers by finding the largest font size where every span stays within its parent div.

Install

npm install psychic-potato

API

import { squeezeText } from "psychic-potato";

squeezeText(roots: HTMLDivElement[]): void

Pass an array of root divs. The function walks each root recursively, finds every div that directly contains a span, and adjusts a single shared font size so all spans fit inside their containers.

const roots = Array.from(document.querySelectorAll<HTMLDivElement>(".label-container"));
squeezeText(roots);

The font size is set as an inline style on both the container div and its span. Call squeezeText again on resize.

DOM structure

Each container div must have exactly one direct span child:

<div class="label-container">
  <span>Some text</span>
</div>

Container divs can be anywhere in the subtree of a root — they do not have to be the root itself:

<div id="root">
  <div><span>January</span></div>
  <div><span>February</span></div>
</div>
squeezeText([document.getElementById("root")]);

Behaviour

  • Measures getBoundingClientRect() on divs and spans
  • Fitting target is each div's content box (padding and borders reduce usable space)
  • A single font size scalar is applied to all container divs and their spans
  • The binding constraint is the pair whose span is closest to or furthest past its edge — all other pairs get the same scalar and will fit with slack
  • Dimensions that change with font size are excluded from fitting; if all dimensions of a div become unstable the function throws
  • Font sizes are restored to their original values if the function throws

Throws

| Condition | Message | |---|---| | Empty roots array | squeezeText requires at least one root div. | | Root not connected to document | squeezeText requires div N to be connected. | | No div-span pair found in any root | squeezeText: no div containing a span was found. | | A div has more than one span | squeezeText: a div contains more than one span. | | No span renders measurable text | squeezeText requires at least one span to render measurable text. | | A div loses all stable dimensions | squeezeText: a div lost all stable dimensions. | | Sweep cannot bracket a fit | squeezeText: could not bracket a fit during the sweep. |