It’s been awhile since I did any frontend work. Is there something that has taken jQuery’s place?

  • taaz@biglemmowski.win
    link
    fedilink
    English
    arrow-up
    21
    arrow-down
    2
    ·
    edit-2
    7 months ago

    No, because the current practices have shifted from writing html+css+js in the classic style to using JavaScript frontend frameworks like vue, react, angular, svelte… Which offer a lot of features that would jQyery give you but also removed the need for some of them.
    The paradigm has shifted and I don’t think jQuery is used anymore (atleast not for new projects).

    • FooBarrington@lemmy.world
      link
      fedilink
      arrow-up
      15
      arrow-down
      1
      ·
      7 months ago

      To explain this a bit further, the main difference between older jQuery-based projects and newer (React|Vue|Angular|Svelte)-based projects is imperative vs. declarative programming.

      It used to be that you give commands (e.g. “when the user clicks this button, change that label content and add CSS classes to these elements”). Very quick to add something small, but also hard to grow and maintain well. It’s easy to forget a command in some code paths.

      Nowadays you declare state, and define how your UI is derived from that. This means you don’t give commands to change things, instead you change data and your UI is updated automatically. This makes it much easier to understand a component, and allows for maintainable growth.