this post was submitted on 11 Dec 2023
69 points (97.3% liked)

Programming

16781 readers
112 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 [email protected]



founded 1 year ago
MODERATORS
 

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
[โ€“] 0x0001 19 points 8 months ago (1 children)

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)

[โ€“] [email protected] 1 points 8 months ago

What do you still need babel for?

The only features that come to mind for anyone who needs to reach out to babel today would be those working on the tc39 proposals themselves.