TE
TechEcho
Home24h TopNewestBestAskShowJobs
GitHubTwitter
Home

TechEcho

A tech news platform built with Next.js, providing global tech news and discussions.

GitHubTwitter

Home

HomeNewestBestAskShowJobs

Resources

HackerNews APIOriginal HackerNewsNext.js

© 2025 TechEcho. All rights reserved.

Why your website should be under 14kB in size

19 pointsby franze9 months ago

5 comments

arp2429 months ago
Previous (same story, posted under different title):<p><i>A 14kb page can load much faster than a 15kb page</i> - <a href="https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32587740">https:&#x2F;&#x2F;news.ycombinator.com&#x2F;item?id=32587740</a> - Aug 2022 (349 comments)
oliverkwebb9 months ago
A issue with this is favicons. Which take up loads of space since they are tiny (usually losslessly compressed raster) images. You can simplify them or make them smaller or in ycombinaters case turn them into SVG. But without _changing_ the image itself it&#x27;s still around a dozen kilobytes in some cases
lostmsu9 months ago
This would have been very doable with interactivity if we used bytecode instead of JavaScript. WinForms apps start at 5KB (dependent on .NET Framework).<p>Might become doable with WASM if standard library and DOM won&#x27;t be dynamic dispatch only.
评论 #41279497 未加载
anotherhue9 months ago
Also worry about Nagle, fast open, http2 or 3, and maybe dns resolution. Happy eyeballs too.
M95D9 months ago
Good luck convincing discord and wordpress about the 14KB limit.