Comment by j-krieger

Comment by j-krieger 3 days ago

21 replies

> The real question is, do we actually need "frameworks"?

Yes. The advantage of having a common API across thousands of web apps shouldn't be a point of discussion.

onion2k 3 days ago

The advantage of having a common API across thousands of web apps shouldn't be a point of discussion.

We have one. It's called "the browser". The discussion is whether or not we need a higher level API than that. If we do, maybe that should also be a part of the browser's API.

  • arvinsim 3 days ago

    It would be easier if "the browser" is just one target.

    As it is, there multiple browsers supporting different levels of features.

    That's the whole reason why frameworks are made in the first place dating back to jQuery.

    • GuB-42 3 days ago

      The days of IE6 which justified jQuery are long gone.

      All browsers that matter now support a solid common set of features which should be sufficient for the vast majority of cases.

      • koshergweilo 3 days ago

        > All browsers that matter now support a solid common set of features which should be sufficient for the vast majority of cases.

        All it takes is one of those non majority use cases and you're going to need some kind of dependency to get things consistent

        • pkphilip 2 days ago

          Frameworks like Vue 3 don't actually work on older browsers since it requires ES2016 support in the browsers.. that means IE 11 and older browsers are out. With Svelte you need Microsoft Edge (IE 11 is not supported). Also, it requires Firefox 74 (released in 2020) or newer Firefox versions.

          With React, you can make it work with older browsers using Polyfill etc.

      • j-krieger 3 days ago

        You still can‘t style select elements in anything but brand new alpha chrome. It‘s been 20 years since that feature was requested.

  • troupo 3 days ago

    > The discussion is whether or not we need a higher level API than that.

    Try using DOM APIs to build anything remotely complex or interactive. There's a reason everyone who only uses browser APIs ends up just dumping strings into the DOM via innerHtml.

    • skydhash 3 days ago

      > Try using DOM APIs to build anything remotely complex or interactive.

      I think the core question is: Are we building something complex or interactive. I don't see the need for React or other frameworks unless you're storing a lot of mutable states client-side. But more often than not, all I see is replicating the database through API endpoints.

      • j-krieger 3 days ago

        Any user facing website that is not a portfolio site is interactive. The days where the web is display-only are long past.

  • j-krieger 3 days ago

    „The browser“ doesn‘t exist. So no, we don‘t have one.

TickleSteve 3 days ago

Pure JS is that interface... you're arguing for multiple unnecessary abstraction layers piled on top of each other.

More abstraction != easier to use.

  • tipiirai 3 days ago

    Spot on. HTML, JS, and CSS deliver a clean separation of concerns—a perfect blank slate for killer products. You just need a few key pieces to tie it all together: templating with loops for repeating HTML chunks and a way to stitch in headers, footers, or sidebars. For apps, a routing system is a must. And HMR to supercharge your dev workflow. That’s Nue in a nutshell.

    • troupo 3 days ago

      > HTML, JS, and CSS deliver a clean separation of concerns

      There's nothing clean about this separation, and concerns are never as neatly separated as people pretend they are.

      > For apps,

      For apps you need actual app-like things where your separation of concerns looks like the right image here: https://x.com/simonswiss/status/1664736786671869952

      • skydhash 3 days ago

        >> HTML, JS, and CSS deliver a clean separation of concerns

        > There's nothing clean about this separation, and concerns are never as neatly separated as people pretend they are.

        It's very clean and something repeated by almost every UI framework and document system. The separation is between structure, style, and interactivity. Most web apps actually fits the document models where you have content pages and forms. But people wants to bring desktop and game UI patterns into that. And make it a mess.

  • j-krieger 3 days ago

    Your comment shows that you don‘t have a lot of experience in that matter. „Pure JS“ (there is no such thing) has perhaps the tiniest standard library of anything out there. The rest is browser vendor code, of which a lot depends on browsers and versions. Hell, they didn‘t even get date parsing right.

    • TickleSteve 2 days ago

      "Pure" JS exists as a concept, not a project.

      Having a tiny standard library is also a good thing, not a bad one... I'm not saying its an ideal API but in general, smaller==better (within reason).