Live data from Hacker News

Ask HN: What web frameworks do you use?

news.ycombinator.com

41–50 of 66 posts

Re: Ask HN: What web frameworks do you use?

#42
IMHO, it depends on what you want to do:

I 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?

#43
Django, mithril.js, and bootstrap.

Django 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?

#49
post #5

rails for work, axum for side projects

How are you liking Axum? I also use it, after switching from Actix Web.

A little trait heavy, but overall it's ok! I like the extractors, didn't at first but I learned to love them.

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.

Post reply on HN