web-vitals icon indicating copy to clipboard operation
web-vitals copied to clipboard

Size of library in README.md

Open alcazes opened this issue 3 years ago • 1 comments

In the READEME.md it is mentioned:

The web-vitals library is a tiny (~1K),

When I checked on https://unpkg.com/browse/[email protected]/dist/ the library is actually 4.36 kB, could this be updated please ?

alcazes avatar Apr 01 '22 09:04 alcazes

That's considering the file size without compression. With compression, it's ~1.5kb:

$ curl -s https://unpkg.com/[email protected]/dist/web-vitals.js | gzip -9 -c | wc -c
    1713
$ curl -s https://unpkg.com/[email protected]/dist/web-vitals.js | brotli --best | wc -c
    1524

jridgewell avatar Apr 01 '22 15:04 jridgewell

Since clarified and now reads:

The web-vitals library is a tiny (~1.5K, brotli'd)

tunetheweb avatar Jan 19 '23 20:01 tunetheweb