72

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

you are viewing a single comment's thread
view the rest of the comments
[-] Max_P@lemmy.max-p.me 51 points 10 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.

[-] kameecoding@lemmy.world 3 points 10 months ago

JSX is fucking weird compared to vue

[-] realharo@lemm.ee 3 points 10 months ago* (last edited 10 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.

[-] spartanatreyu@programming.dev 2 points 10 months ago* (last edited 10 months ago)

DOM attributes are built for browsers and frameworks to take advantage of.

The style of some of those frameworks to stick symbols in there is downright weird. But that only goes against those particular frameworks. It doesn't impact how good DOM attributes actually are.

load more comments (7 replies)
load more comments (11 replies)
load more comments (14 replies)
this post was submitted on 11 Dec 2023
72 points (97.4% liked)

Programming

17242 readers
288 users here now

Welcome to the main community in programming.dev! Feel free to post anything relating to programming here!

Cross posting is strongly encouraged in the instance. If you feel your post or another person's post makes sense in another community cross post into it.

Hope you enjoy the instance!

Rules

Rules

  • Follow the programming.dev instance rules
  • Keep content related to programming in some way
  • If you're posting long videos try to add in some form of tldr for those who don't want to watch videos

Wormhole

Follow the wormhole through a path of communities !webdev@programming.dev



founded 1 year ago
MODERATORS