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

humanize-numbers

v1.0.42

Published

Make large numbers human readable

Readme

🚀 Installation

npm install humanize-numbers

📦 Usage Example

humanizeNumber - a method that converts the value of a number into a value that is as readable as possible for humans

import { humanizeNumberXS, humanizeNumberSM, humanizeNumber } from 'humanize-numbers'

/*
* standart size
*/
humanizeNumber(1000) // 1 thousand
humanizeNumber(10000) // 10 thousand
humanizeNumber(1000000) // 1 million
humanizeNumber(2100000) // 2.1 million
humanizeNumber(11111111) // 11.11 million
humanizeNumber(1234567890) // 1.23 billion
humanizeNumber(1234567890123) // 1.23 trillion
humanizeNumber(1.222e15) // 1.22 quadrillion
humanizeNumber(1.222e18 + 2) // 1.22 quintillion
humanizeNumber(1.222e21 + 2) // 1.22 sextillion
humanizeNumber(1e303) // 1 centillion

/*
* small size
*/
humanizeNumberSM(1000) // 1K
humanizeNumberSM(10000) // 10K
humanizeNumberSM(1000000) // 1M
humanizeNumberSM(11111111) // 11.11M
humanizeNumberSM(1234567890) // 1.23B
humanizeNumberSM(1234567890123) // 1.23T
humanizeNumberSM(1.222e15) // 1.22 Qa
humanizeNumberSM(1.222e18 + 2) // 1.22 Qi
humanizeNumberSM(1.222e21 + 2) // 1.22 Sx
humanizeNumber(1e303) // 1 centillion

/*
* extra small size
*/
// xs and sm in english version difference:
humanizeNumberXS(1.222e21 + 2) // 1.2 Sx (not 1.22 Sx)
Change locale to russian:
import { setGlobalLocale, humanizeNumberXS, humanizeNumberSM, humanizeNumberMD, humanizeNumber } from 'humanize-numbers'

setGlobalLocale('ru')

/*
* standart size
*/
humanizeNumber(1000) // 1 тысяча
humanizeNumber(10000) // 10 тысяч
humanizeNumber(1000000) // 1 миллион
humanizeNumber(2100000) // 2.1 миллиона
humanizeNumber(11000000) // 11 миллионов
humanizeNumber(1234567890) // 1.23 миллиарда
humanizeNumber(1234567890123) // 1.23 триллиона
humanizeNumber(1.222e15) // 1.22 квадриллиона
humanizeNumber(1.222e18 + 2) // 1.22 квинтиллиона
humanizeNumber(1.222e21 + 2) // 1.22 секстиллиона
humanizeNumber(1e303) // 1 центиллион

/*
* small size
*/
humanizeNumberSM(1000) // 1 тыс.
humanizeNumberSM(10000) // 10 тыс.
humanizeNumberSM(1000000) // 1 млн
humanizeNumberSM(2100000) // 2.1 млн
humanizeNumberSM(11000000) // 11 млн
humanizeNumberSM(1234567890) // 1.23 млрд
humanizeNumberSM(1234567890123) // 1.23 трлн
humanizeNumberSM(1.222e15) // 1.22 Qa
humanizeNumberSM(1.222e18 + 2) // 1.22 Qi
humanizeNumberSM(1.222e21 + 2) // 1.22 Sx
humanizeNumberSM(1e303) // 1 центиллион

/*
* extra small size
*/
humanizeNumberXS(10000) // 10K
humanizeNumberXS(1000000) // 1M
humanizeNumberXS(2100000) // 2.1M
humanizeNumberXS(11000000) // 11M
humanizeNumberXS(1234567890) // 1.2B
humanizeNumberXS(1234567890123) // 1.2T
humanizeNumberXS(1.222e15) // 1.2 Qa
humanizeNumberXS(1.222e18 + 2) // 1.2 Qi
humanizeNumberXS(1.222e21 + 2) // 1.2 Sx
humanizeNumberXS(1e303) // 1 центиллион
options:
/* using certain unit rank: */
humanizeNumberXS(500, { withUnit: 1e3 }) // 0.5K
humanizeNumberXS(1e9, { withUnit: 1e3 }) // 1KKK
humanizeNumberXS(1e12, { withUnit: 1e3 }) // 1KKKK
humanizeNumberXS(1e12, { withUnit: 1e6 }) // 1MM

/* using certain locale: */
humanizeNumberMD(1e9, { locale: 'ru' }) // 1 миллиард
humanizeNumberMD(1e9, { locale: 'en' }) // 1 billion

/* using certain fraction count: */
humanizeNumberSM(1111111, { fractionCount: 4, locale: 'ru' }) // 1.1111 млн

/* using certain size: */
humanizeNumber(1e9, 'sm', { locale: 'ru' }) // 1 млрд
humanizeNumber(1e9, 'md', { locale: 'en' }) // 1 billion

humanizeWithFormat (humanizeAbbr, humanizeAlphabet) - a method for easily perceiving huge numbers

import { humanizeWithFormat, humanizeAbbr, humanizeAlphabet } from 'humanize-numbers'

/*
* by abbr (K - thousand, M - million, B - billion, T - trillion)
*/
humanizeAbbr(1e3) // 1K
humanizeAbbr(1e6) // 1M
humanizeAbbr(1e9) // 1B
humanizeAbbr(1e12) // 1T
humanizeAbbr(1e15) // 1TK
humanizeAbbr(1e18) // 1TM
humanizeAbbr(1e21) // 1TB
humanizeAbbr(1e24) // 1TT
humanizeAbbr(1e27) // 1TTK
humanizeAbbr(1e303) // 1TTTTTTTTTTTTTTTTTTTTTTTTTK

/*
* by alphabet (a - thousand, b - million, c - billion, d - trillion, ...)
*/
humanizeAlphabet(1e3) // 1a
humanizeAlphabet(1e6) // 1b
humanizeAlphabet(1e9) // 1c
humanizeAlphabet(1e12) // 1d
humanizeAlphabet(1e15) // 1e
humanizeAlphabet(1e18) // 1f
humanizeAlphabet(1e21) // 1g
humanizeAlphabet(1e24) // 1h
humanizeAlphabet(1e27) // 1i
humanizeAlphabet(1e303) // 1zzzw

/*
* custom format (а - thousand, б - million, в - billion, г - trillion, ...)
*/
let ru = 'а,б,в,г,д,е,ё,ж,з,и,й,к,л,м,н,о,п,р,с,т,у,ф,х,ц,ч,ш,щ,ъ,ы,ь,э,ю,я'.split(',')
humanizeWithFormat(1e3, { format: ru }) // 1а
humanizeWithFormat(1e6, { format: ru }) // 1б
humanizeWithFormat(1e9, { format: ru }) // 1в
humanizeWithFormat(1e303, { format: ru }) // 1яяяб

fullyReadableNumber - make the number readable and display it completely

import { fullyReadableNumber } from 'humanize-numbers'

fullyReadableNumber(1e21) // 1 000 000 000 000 000 000 000
fullyReadableNumber(100123123123123) // 100 123 123 123 123
fullyReadableNumber(1000000000, ',') // 1,000,000,000

avoidExponentialNotation - fullyReadableNumber is based on it.

import { avoidExponentialNotation } from 'humanize-numbers'

avoidExponentialNotation(1e21) // 1000000000000000000000

countUnits - count the number of digits after the first digit of the number

import { countUnits } from 'humanize-numbers'

countUnits(1000) // 3
countUnits(10000) // 4
countUnits(11111) // 4
countUnits(1000000) // 6

dashNumbers - connect the numbers if they come in sequence

import { dashNumbers } from 'humanize-numbers'

dashNumbers([1,2,3,4,5, 100, 200,201,202,203]) // 1-5, 100, 200-203
dashNumbers([1,2,3,4,5, 100, 200,201,202,203], ' to ', ' and ') // 1 to 5 and 100 and 200 to 203

round and beutifulRound - round up the number

import { round, floor, ceil, beutifulRound, beutifulFloor, beutifulCeil } from 'humanize-numbers'

round(1.55) // 2
round(1.55, 1) // 1.6
floor(1.99) // 1
floor(1.99, 1) // 1.9
ceil(1.01) // 2
ceil(1.019, 2) // 1.02

beutifulRound(111111, 0) // 100000
beutifulRound(111111, 1) // 110000 /* by default */
beutifulRound(111111, 2) // 111000
beutifulFloor(111111) // 110000
beutifulFloor(111111, 2) // 111000
beutifulCeil(111111) // 120000
beutifulCeil(111111, 2) // 112000

textToNumbers - get numbers from text string

import { textToNumbers } from 'humanize-numbers'

textToNumbers('user input: 10 тысяч') // { numbers: [10000], textWithoutNumbers: 'user input: ' }
textToNumbers('1 миллион') // { numbers: [1000000], textWithoutNumbers: '' }
textToNumbers('1.1 млн') // { numbers: [1100000], textWithoutNumbers: '' }
textToNumbers('1.11 млн') // { numbers: [1110000], textWithoutNumbers: '' }
textToNumbers('1.23 млрд') // { numbers: [1230000000], textWithoutNumbers: '' }
textToNumbers('1.23 трлн') // { numbers: [1230000000000], textWithoutNumbers: '' }
textToNumbers('1.22 квадриллиона') // { numbers: [1.22e15], textWithoutNumbers: '' }
textToNumbers('1.22 квинтиллионов') // { numbers: [1.22e18], textWithoutNumbers: '' }
textToNumbers('1.22 секстиллионов') // { numbers: [1.22e21], textWithoutNumbers: '' }
textToNumbers('1000, 2000, 10 тысяч') // { numbers: [1000, 2000, 10000], textWithoutNumbers: ', , ' }

includes some more important well-known methods: lerp, clamp, fract

import { lerp, clamp, fract } from 'humanize-numbers'