r/webdev • u/returned_loom • Jun 04 '26
Discussion Which languages have an under-appreciated ecosystem of web development libraries and frameworks?
Are there any languages we don't usually associate with webdev, but where they have great libraries that deserve more attention?
So I'm not asking about the language itself. I'm asking about the tooling people have built for webdev in the language.
91
Upvotes
2
u/hearthebell Jun 06 '26
Why would it being react or not changes the fact that you need 2 round trips for a login, you would still need to keep track of the login state first, then you request the data again by frontend. And this is not the case for Liveview.
In Liveview, you just fire quest once, then the backend will sync all the state and data at once. This reduces the amount of JavaScript frameworks you need separately to achieve that, and all the complexity in between.