-
I've come across MoonZoon (https://github.com/MoonZoon/MoonZoon) which seems like an interesting full stack framework, but I'm wondering about a solution that would allow choosing both frontend and backend frameworks.
-
Stream
Stream - Scalable APIs for Chat, Feeds, Moderation, & Video. Stream helps developers build engaging apps that scale to millions with performant and flexible Chat, Feeds, Moderation, and Video APIs and SDKs powered by a global edge network and enterprise-grade infrastructure.
-
For my project, FeoBlog (https://github.com/nfnitloop/feoblog/). I use https://crates.io/crates/rust-embed to embed static files in the built binary.
-
rust-embed
Discontinued Rust Macro which loads files into the rust binary at compile time during release and loads the file from the fs during dev.
They even accepted one of my feature requests to add some file metadata which makes doing this kind of thing easier: https://github.com/pyros2097/rust-embed/issues/140
-
Funny, I did exactly this with a rocket backend and a yew frontend a while ago. I use the cargo xtask pattern for this. More information in my repository.