Hacker News new | ask | show | jobs
by masklinn 1035 days ago
> But I don't know if I can call things in the Rust world like Axum/Actix/etc. "frameworks" anymore

A "framework" is a thing which calls your code rather than the other way around. You're confusing framework and "full stack" framework.

Actix or Axum are web frameworks in the same sense Flask or Sinatra are web frameworks: they deal with the HTTP lifecycle, and call your code when certain conditions are met (usually around routing).