Live data from Hacker News

Viewing profile — aaaaaaabbbbbb

aaaaaaabbbbbb

HN member
Joined
Sat, Jun 22, 2024, 5:42 AM UTC
HN karma
37
Public activity
10 items

About aaaaaaabbbbbb

No profile information was provided.

Recent public activity

  1. comment
    Comment #47432229

    Ah yes, one step outside of New York City, and I'm immediately in the boondocks.

  2. comment
    Comment #43959346

    Assuming one has access to a credit card and is financially literate, I agree that using BNPL is a hard sell (never having used it myself). But there is a large population--the unb…

  3. comment
    Comment #40859353

    If you have a lot of files, the initial (dev server) page load times increases linearly with the number of files you have. With a slow bundler, that tradeoff made sense, but with a…

  4. comment
    Comment #40855865

    Next.js et al. provides a set of opinionated packages designed to enable a specific paradigm. For Next.js, that's server-side rendering. For Remix, that's progressive enhancement. …

  5. comment
    Comment #40855812

    Note that while Vite transpiles with esbuild, it bundles with Rollup, which is single-threaded JS. Vite also uses esbuild to prebundle dependencies for the dev server, but this is …

  6. comment
    Comment #40855617

    If you are also looking for broader context beyond what a bundler is, I have written a broader exposition on frontend builds here, which may be useful in understanding how bundlers…

  7. comment
    Comment #40756933

    Since tree-shaking is a common term across frontend build tooling documentation, I adopted it as well. Dead code elimination in its traditional form also runs during code minificat…

  8. comment
    Comment #40756892

    Thanks for the feedback! I struggled with the ordering since each section is somewhat mutually dependent; this is arranged more like a thematic history than a chronological one. Tr…

  9. comment
    Comment #40756683

    Esbuild lacks the featureful plugin API that Webpack and Rollup have. It's pretty easy to avoid dependencies that require transpiler/bundler plugins and still have a great set of d…

  10. comment
    Comment #40756645

    I have recently written a broader exposition on frontend build tooling, perhaps it will be useful: https://sunsetglow.net/posts/frontend-build-systems.html . The performance gains …