Ask HN: What web frameworks do you use?
41–50 of 66 posts
Re: Ask HN: What web frameworks do you use?
#42I use WordPress for managing large amounts of content at https://last10k.com
I use ReactNative + TypeScript for developing a cross-platform app at https://github.com/hbcondo/revenut-app
I selected Phoenix's LiveView + Elixir + Rust for real-time streaming at https://last10k-com-live.fly.dev/filings (in progress)
Re: Ask HN: What web frameworks do you use?
#43Django since it's a "batteries included" framework. Mithril.js for react-like features. It's a small framework, so one could easily read through it's code to understand how it works if needed.
I'll swap Django for Flask for smaller/lighter services.
If I was starting a project today, I might use htmx in place of mithril.js, and tailwind in place of bootstrap.
Re: Ask HN: What web frameworks do you use?
#44rails for work, axum for side projects
Re: Ask HN: What web frameworks do you use?
#45Re: Ask HN: What web frameworks do you use?
#46Go/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?
#47Axum + Leptos: Rust in the frontend, Rust in the backend.
Re: Ask HN: What web frameworks do you use?
#48EDIT: +grpc for services. Web just happens to be a http translation layer + websocket termination.
Re: Ask HN: What web frameworks do you use?
#49rails for work, axum for side projects
How are you liking Axum? I also use it, after switching from Actix Web.
Middleware::from_fn was a life saver in the current version, middleware was kind of annoying before that was added.
Would prefer something more like graphul but haven't given it a shot yet.