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

  • Kissaki@feddit.de
    link
    fedilink
    English
    arrow-up
    94
    ·
    7 months ago

    JavaScript itself provides the functionality jQuery became popular for. So no. Check the standard lib first before considering helper libs.

  • Max-P@lemmy.max-p.me
    link
    fedilink
    arrow-up
    42
    ·
    7 months ago

    It depends what you want to do and the amount of polyfills/backwards compatibility you need.

    Nowadays most projects use one of the big frameworks like React/Vue/Svelte and others which take a vastly different approach to maintaining the DOM and for the most part you never manipulate nodes yourself, therefore you don’t need jQuery and it’s not used much anymore. JSX is weird at first but it’s actually quite nice. Some of those libraries like SolidJS have impressively low overhead.

    And for those that like to stick to just minimal JS, the browser APIs have matured a lot so a lot of jQuery isn’t really necessary anymore either. We have querySelectorAll and things like Array.prototype.forEach and Array.prototype.map and arrow functions that cut down a lot on what shortcuts jQuery would offer. Visual effects are usually done with CSS animations and just switching up classes. Everything AJAX is easier and cleaner with the new fetch() function and accessories. Vanilla JavaScript is for the most part quite usable and easy these days. You can even create custom HTML elements from JavaScript to make your life easier!

    But if you’re looking at the jQuery API specifically, you can still use jQuery today. It’s still maintained and functional. I think modern versions are pretty small too since it no longer needs half of it to be Internet Explorer hacks and other obsolete browsers that were holding web development back.

      • realharo@lemm.ee
        link
        fedilink
        arrow-up
        2
        ·
        edit-2
        7 months ago

        Custom template language and custom DOM attributes are way weirder than just using language-native constructs (ternary operator, map/filter, variables, functions, etc.) directly like you can in JSX.

            • kameecoding@lemmy.world
              link
              fedilink
              arrow-up
              2
              ·
              edit-2
              7 months ago

              template syntax is a piece of cake, takes literally 2 hours to learn everything you need and you can easily see what’s where and how the html will look when it’s rendered or not.

              and the list rendering? you are literally pointing out the best features of vue.

              • realharo@lemm.ee
                link
                fedilink
                arrow-up
                1
                ·
                edit-2
                7 months ago

                But why bother with creating a new language, and duplicating all the features your language already has, in a weird way?

                If I want a list of UI items based on an array of some data, I can just do items.map(item => 〈Item key={item.id} item={item} /〉), using the normal map function that’s already part of the language.

                Or I can use a function, e.g. items.map(item => renderItem(item, otherData)) etc.

                JSX itself is a very thin layer that translates to normal function calls.

                • kameecoding@lemmy.world
                  link
                  fedilink
                  arrow-up
                  1
                  ·
                  edit-2
                  7 months ago

                  but how do you know what renderItem does? where will the items end up?

                  we are visual creatures.

                  if I see a <ul><li></li></ul> I know it’s doing a list item for every object in given list.

                  it’s literally just html with a few added stuff, v-if to determine whether it’s rendered, v-for for iteration, dynamic class bindings and event listener bindings.

                  templating has also been around for a while for a reason it’s solid tech, thymeleaf and jsf/primefaces being prime examples.

      • kellyaster@kbin.social
        link
        fedilink
        arrow-up
        2
        ·
        7 months ago

        Same here, tbh I haven’t thought about jquery in a while and kinda came in here to see if it’s dead or not. Yeah frameworks have largely eliminated the “need” for jquery libraries for most projects. It’s weird to think about, didn’t take too long to happen.

  • 𝒍𝒆𝒎𝒂𝒏𝒏@lemmy.one
    link
    fedilink
    arrow-up
    22
    ·
    7 months ago

    A lot of jQuery’s features are now available in native JS - would also suggest just using native JS anyway because jQuery won’t throw any errors into the console if a selector matches no elements etc.

    The only additional library I’ve needed recently for (personal work) is Axios for requests - easier than working with the Fetch API in some cases

    • Nerd02@lemmy.basedcount.com
      link
      fedilink
      English
      arrow-up
      7
      ·
      7 months ago

      Axios for requests - easier than working with the Fetch API in some cases

      May I ask what cases? I used to use Axios on Node, before they implemented the fetch API over there but I haven’t touched it since. And defintiely never used it on the client. Could you make an example of some case where it’d be easier to work with Axios than with fetch?

      • 𝒍𝒆𝒎𝒂𝒏𝒏@lemmy.one
        link
        fedilink
        arrow-up
        7
        ·
        7 months ago

        For me it’s the ability to set up a shared instance with the base request URL, and set headers for things like the user’s token, allowing all requests made with that shared Axios instance to be sent to the right path with the token without needing to define them for each individual request.

        To be honest though something similar can be done with spread syntax in the Fetch API’s options parameter

  • 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
      13
      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.

  • 0x0001@sh.itjust.works
    link
    fedilink
    arrow-up
    16
    ·
    7 months ago

    Jquery is a swear word in professional front end contexts, the replacement is transpilation and dropping ie support.

    Personally I used jquery up until react and babel got hot, now I never touch the dom directly with jquery and no longer have a need for the polyfill features as I rely on babel preset-env to support the browsers we have selected (especially for things like promises/async await/es6+ features)

  • pe1uca@lemmy.pe1uca.dev
    link
    fedilink
    arrow-up
    11
    ·
    7 months ago

    IIRC most stuff can be done with vanilla JS in any modern browser.
    Although, I’ve been doing little front-end work, and mostly for personal projects, nothing fancy nor production ready, so someone might have another opinion about using jQuery.