this post was submitted on 03 Oct 2025
560 points (98.8% liked)

Programmer Humor

26772 readers
932 users here now

Welcome to Programmer Humor!

This is a place where you can post jokes, memes, humor, etc. related to programming!

For sharing awful code theres also Programming Horror.

Rules

founded 2 years ago
MODERATORS
you are viewing a single comment's thread
view the rest of the comments
[–] hperrin@lemmy.ca 14 points 5 days ago* (last edited 5 days ago) (3 children)

I wrote an entire email service (https://port87.com/) in JavaScript (Node.js and SvelteKit). I know some people have strong feelings against JavaScript, but the fact that you can build basically anything in it is pretty nice.

[–] iglou@programming.dev 4 points 4 days ago

There is many languages that you can build anything with... Although I'll agree the front end side is more tedious

[–] Tja@programming.dev 3 points 4 days ago

As long as you're not doing number crunching, use whatever makes you more productive.

[–] douglasg14b@lemmy.world 2 points 4 days ago (1 children)

I mean yeah you can do anything with it like most other languages. The problem comes in with the unstable ecosystem JavaScript has.

You simply don't have longevity with libraries and frameworks. They churn and become deprecated far too quickly for really any stable project that requires a low maintenance burden.

[–] hperrin@lemmy.ca 3 points 4 days ago

When I say “build anything”, I mean it works in nearly every environment, including natively in the browser. I can write the same code on the server as in the browser as in a mobile app as in a desktop app.

React has been around, and improving, for 12 years. You can run code from the first version today. The DOM has been stable since about 1998, so anything built on it should still run today.

It is true that JavaScript libraries tend to change quickly, but that doesn’t mean old versions stop working. It’s not like the native Linux ecosystem, where you need to build on the current kernel and libraries or it won’t work, it’s more like Docker or Flatpak, where you can build your libraries into your bundle and they will keep working. That’s why websites that were built 20 years ago, with the libraries of the time, still work today.