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

get-text-width

v1.0.3

Published

This module helps calculate the rendered width of text.

Downloads

9,235

Readme

getTextWidth

This helper function is intended to get the rendered width of text. It leverages canvas to simulate the rendered text and calculate the width using the font of your project.

It also has a backup height:width ratio number in case something goes wrong with the canvas.

Returns numeric value of width in pixels

Example

Here is an example of how to implement this function.


import { getTextWidth } from 'get-text-width';

const width = getTextWidth("Hello world");

// The function also accepts as custom 
// backup font height:width ratio like so:
const width = getTextWidth("Hello world", 0.5);

Live demo

Common fonts height:width aspect ratios

| Font | Aspect ratio | | ------------------------- | ------------- | | Arial | 0.52 | | Arial Black | 0.52 | | Calibri | 0.46 | | Candara | 0.47 | | Century Gothic | 0.53 | | Corbel | 0.46 | | DejaVu Sans | 0.55 | | DejaVu Sans Condensed | 0.55 | | DejaVu Sans Light | 0.55 | | Eurostile | 0.47 | | Franklin Gothic | 0.49 | | Futura | 0.51 | | Gadget | 0.55 | | Geneva | 0.55 | | Gill Sans | 0.45 | | GNU Free Sans | 0.53 | | Goudy Sans | 0.48 | | Helvetica | 0.52 | | Helvetica Neue | 0.52 | | Impact | 0.65 | | Liberation Sans | 0.53 | | Lucida Grande | 0.53 | | Lucida Sans Unicode | 0.53 | | Myriad | 0.48 | | Optima | 0.47 | | Serpentine BoldBold | 0.47 | | Stone Sans | 0.52 | | Tahoma | 0.55 | | Trebuchet MS | 0.52 | | Verdana | 0.55 |

| Font | Aspect ratio | | ------------------------- | ------------- | | Baskerville | 0.45 | | Bernhard Modern | 0.34 | | Big Caslon | 0.47 | | Book Antiqua | 0.46 | | Bookman Old Style | 0.47 | | Calisto MT | 0.47 | | Cambria | 0.47 | | Century | 0.46 | | Century Schoolbook | 0.46 | | Cochin | 0.37 | | Constantia | 0.45 | | DejaVu Serif | 0.52 | | DejaVu Serif Condensed | 0.52 | | Didot | 0.43 | | Garamond | 0.38 | | Georgia | 0.48 | | GNU Free Serif | 0.45 | | Goudy Old Style | 0.40 | | Hoefler Text | 0.44 | | Humana Serif | 0.50 | | Janson Text | 0.43 | | Liberation Serif | 0.46 | | Minion | 0.45 | | New York | 0.55 | | Palatino | 0.46 | | Times New Roman | 0.45 |

| Font | Aspect ratio | | ------------------------- | ------------- | | Andale Mono | 0.51 | | Consolas | 0.49 | | Courier New | 0.43 | | DejaVu Mono | 0.55 | | GNU Free Mono | 0.42 | | Liberation Mono | 0.53 | | Lucida Console | 0.53 |

| Font | Aspect ratio | | ------------------------- | ------------- | | URW Alcuin SCT | 0.51 | | American Typewriter | 0.51 | | Barbedor | 0.49 | | Caflisch Script | 0.37 | | Chalkboard | 0.53 | | Charlemagne | 0.74 | | Comic Sans MS | 0.55 | | Copperplate | 0.44 | | Corsiva | 0.60 | | Flemish Script | 0.28 | | Herculanum | 0.61 | | Marker Felt | 0.62 | | Papyrus | 0.46 | | Sand | 0.69 | | Textile | 0.68 |

       

Happy coding! 🗒