I'm trying to do web game development now and didn't want to fight the reconciler. I'm trying to build out stuff in Rust -> WASM but it's much harder than expected :) Not sure I could recommend it yet.
Ask HN: What web frameworks do you use?
51–60 of 66 posts
Re: Ask HN: What web frameworks do you use?
#52Go/HTMX/Tailwind/SQLite Nothing better than request latencies measured in microseconds on complex UIs built in an afternoon
Re: Ask HN: What web frameworks do you use?
#53Honestly I don't like Play. I'm looking for a better alternative to it.
Re: Ask HN: What web frameworks do you use?
#54Are you building a highly interaction frontend application? I mean an actual application? Or is it static with some interactive components? CSS can go far these days. And you can always add little interactivity with a script tag on the page.
Re: Ask HN: What web frameworks do you use?
#55I actually went 3 years building Phoenix projects (2015-2018) and went back to Ruby/Rails, because it's really hard to beat the ergonomics, low ceremony, and expressiveness of the stack.
Might swing back into Elixir world if the right project comes along.
Re: Ask HN: What web frameworks do you use?
#56Are you building a highly interaction frontend application? I mean an actual application? Or is it static with some interactive components? CSS can go far these days. And you can always add little interactivity with a script tag on the page.
No, just curious.
Re: Ask HN: What web frameworks do you use?
#57Re: Ask HN: What web frameworks do you use?
#58React using Remix ( https://remix.run/ ) I’ve used it for nearly 2 years in production Highly recommend this video if want a good primer on the problem it solves: https://youtu.be/95B8mnhzoCM?si=EzKwMLbJW2602PJI It’s built by the team that created the popular react router library, which has over a billion downloads since it was published; It brought the joy of programming back for me, but more importantly it solves l…
Even frameworks like Nuxt or similar kinda solves the same issue but they always seem more front end focused and kinda leaves the database layer up to the developer. I love that Remix takes a stance here and helps you get going.
You have everything you need to get started quickly and the performance is great. It's also really easy to extend functionality with packages and seems like there is very few things that you'll miss.
Re: Ask HN: What web frameworks do you use?
#59Re: Ask HN: What web frameworks do you use?
#60Struts and JSPs with some hand-crafted JS and CSS (no JS frameworks). At least that's what I was using back when I did any semblance of front-end web development. Yes, I'm old and no I don't do it anymore! But I do work with a lot of folks on my team who use React for our web UI.