poem
jelly-actix-web-starter
poem | jelly-actix-web-starter | |
---|---|---|
32 | 15 | |
3,647 | 225 | |
1.3% | - | |
8.9 | 0.0 | |
11 days ago | almost 2 years ago | |
Rust | Rust | |
Apache License 2.0 | GNU General Public License v3.0 or later |
Stars - the number of stars that a project has on GitHub. Growth - month over month growth in stars.
Activity is a relative number indicating how actively a project is being developed. Recent commits have higher weight than older ones.
For example, an activity of 9.0 indicates that a project is amongst the top 10% of the most actively developed projects that we are tracking.
poem
-
Show HN: Rust Web Framework
https://github.com/poem-web/poem is one Rust framework with swagger definitions out of the box.
-
Rust needs a web framework for lazy developers
There is one: Poem[1]
The author mentions flask but looking at the "What we need section", I don't think flask covers those. I hate Djago with a passion but if those are the requirements, I think Django is the one that closely resembles what the author is describing. So Poem is not a good candidate either in that regard. Poem is all in all, something that closely resembles FastAPI, which is actually a complement. I've tried half a dozen rust web frameworks and they all come with a ton of boilerplate fiddling with the initial setup. Which is a problem if you want to get things done fast. In that regard, poem nails it. Yes, actix has a considerably better performance but unless you are aiming for sub-30 millisecond responses, then actix is not what you should be looking at to begin with. Also if you crave a Pydantic, there is a crate that sort of does that for you: https://crates.io/crates/poem-openapi
[1] https://github.com/poem-web/poem
-
Write OpenAPI with TypeSpec
TypeSpec is great, but if you're working with Rust and you're about to write a new project that will require an OpenApi spec sooner or later, I'd like to recommend a web framework that has spec generation baked in:
https://github.com/poem-web/poem (see poem_openapi)
All you need to do is derive a trait on your response structs and in return you get an almost perfectly generated spec. Unions, objects, enums are first class citizens.
Also, if you're from coming from PHP, the controllers feel very much like symfony controllers.
P.s. Please do recommend an ORM that would feel closer to doctrine. I miss doctrine.
-
What is the best API generator for Axum?
I've used FastAPI/Pydantic before as well and it was a very good experience. It has been a while since I used them though, so I forget exactly how they compare, but I do recall it wrote most of the OpenAPI spec. for you. I will also agree when I saw utoipa and aide they seemed to require more boilerplate even though I have not done an actual comparison. Poem, on the other hand, seems very neat and clean and doesn't have any duplication that I can see. Here is the [TODO example](https://github.com/poem-web/poem/blob/master/examples/openapi/todos/src/main.rs).
-
Looking for a Rust API with automatic documentation and good validation?
The example at https://github.com/poem-web/poem/tree/master/examples/openapi/auth-apikey works without issues for me.
-
What library to use for a Websocket Server?
'Poem', it turns to nicer to play with for me than 'Axum'. Example of web socket chat https://github.com/poem-web/poem/blob/master/examples/poem/websocket-chat/src/main.rs
-
Rest API framework in rust
If you need built-in OpenAPI support, I can recommend Poem.
-
(Recommendation Request) Rust REST API framework; similar to Python's FastAPI(Python)
If OpenAPI is important, then you may to consider https://github.com/poem-web/poem instead of axum. It isn't nearly as widely used, but it should still be compatible with everything else.
-
Hey Rustaceans! Got a question? Ask here (3/2023)!
Poem: More rigid and less popular and aims to be easier https://github.com/poem-web/poem
-
A taste of pavex, an upcoming Rust web framework
Did you check out Poem? It seems promising, with openapi generation built in already.
jelly-actix-web-starter
-
Any actix-web scaffold?
You can look at https://github.com/secretkeysio/jelly-actix-web-starter
-
Actix Web v4.0 (Rust)
My usual reminder that I have a Django-ish template for actix-web that I maintain: https://github.com/secretkeysio/jelly-actix-web-starter
Now that actix-web 4.0 is out I should be able to finally resolve one of the open issues/PRs, which I was waiting on 4.0 for.
- Which Rust web framework to choose in 2022 (with code examples)
-
The 10 books that helped me, as a hobbyist, on my journey to learn Rust to re-code a Django application
For those interested in Django-in-Rust type approaches, I maintain an actix-web starter project that does exactly this: https://github.com/secretkeysio/jelly-actix-web-starter
-
An Introduction To Session-Based Authentication In Rust | Zero To Production In Rust #10.5
I maintain a starter for all of this kind of stuff on top of actix-web, for anyone interested: https://github.com/secretkeysio/jelly-actix-web-starter/
-
Announcing actix-web-flash-messages: a port of Django's messages framework to actix-web
Curious why you went with the mailbox approach - since a request is pretty much in-and-out, I found it sufficient to just write a trait for HttpRequest and have a custom render(...) method that pulls any flash messages from the session, thus clearing them. Wouldn't surprise me if I'm missing something tho.
- Ask HN: Go-To Web Stack Today?
-
Trillium web framework
I love Askama, but being tied to compile time changes is an absurd handicap on a web framework in the initial iteration phase. With Tera, you can implement a watcher for template changes and reload them without needing to recompile the entire framework.
-
What’s everyone working on this week (12/2021)?
If you want, I have an open source actix-web repo that does stuff like this for you already.
-
Rust as a Flask API replacement? + performance benefits?
If you enjoy Python's web story but want something similar-ish in Rust, you can check out my actix boilerplate repo - it "mimics" Django in many ways. If nothing else, might be useful for picking apart.
What are some alternatives?
axum - Ergonomic and modular web framework built with Tokio, Tower, and Hyper
uWebSockets.js - μWebSockets for Node.js back-ends :metal:
Rocket - A web framework for Rust.
sailfish - Simple, small, and extremely fast template engine for Rust
async-graphql - A GraphQL server library implemented in Rust
redwood - The App Framework for Startups
okapi - OpenAPI (AKA Swagger) document generation for Rust projects
miniserve - 🌟 For when you really just want to serve some files over HTTP right now!
actix-web - Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.
yew - Rust / Wasm framework for creating reliable and efficient web applications
salvo - A powerful web framework built with a simplified design.
chrono - Date and time library for Rust