poem

A full-featured and easy-to-use web framework with the Rust programming language. (by poem-web)

Poem Alternatives

Similar projects and alternatives to poem

  1. fastapi

    556 poem VS fastapi

    FastAPI framework, high performance, easy to learn, fast to code, ready for production

  2. InfluxDB

    InfluxDB – Built for High-Performance Time Series Workloads. InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.

    InfluxDB logo
  3. openapi-generator

    OpenAPI Generator allows generation of API client libraries (SDK generation), server stubs, documentation and configuration automatically given an OpenAPI Spec (v2, v3)

  4. actix-web

    181 poem VS actix-web

    Actix Web is a powerful, pragmatic, and extremely fast web framework for Rust.

  5. Rocket

    164 poem VS Rocket

    A web framework for Rust.

  6. axum

    161 poem VS axum

    Ergonomic and modular web framework built with Tokio, Tower, and Hyper

  7. hyper

    109 poem VS hyper

    An HTTP library for Rust (by hyperium)

  8. warp

    66 poem VS warp

    A super-easy, composable, web server framework for warp speeds. (by seanmonstar)

  9. 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.

    Stream logo
  10. miniserve

    53 poem VS miniserve

    🌟 For when you really just want to serve some files over HTTP right now!

  11. salvo

    24 poem VS salvo

    A powerful web framework built with a simplified design.

  12. Tide

    31 poem VS Tide

    Fast and friendly HTTP server framework for async Rust

  13. maud

    29 poem VS maud

    :pencil: Compile-time HTML templates for Rust

  14. loco

    24 poem VS loco

    🚂 🦀 The one-person framework for Rust for side-projects and startups

  15. connexion

    24 poem VS connexion

    Connexion is a modern Python web framework that makes spec-first and api-first development easy.

  16. okapi

    6 poem VS okapi

    OpenAPI (AKA Swagger) document generation for Rust projects

  17. rwf

    6 poem VS rwf

    Comprehensive framework for building web applications in Rust.

  18. paperclip

    6 poem VS paperclip

    WIP OpenAPI tooling for Rust. (by paperclip-rs)

  19. jelly-actix-web-starter

    Discontinued A starter template for actix-web projects that feels very Django-esque. Avoid the boring stuff and move faster.

  20. Gotham

    5 poem VS Gotham

    A flexible web framework that promotes stability, safety, security and speed.

  21. aide

    4 poem VS aide

    An API documentation library

  22. async-graphql

    A GraphQL server library implemented in Rust

  23. SaaSHub

    SaaSHub - Software Alternatives and Reviews. SaaSHub helps you find the best software and product alternatives

    SaaSHub logo
NOTE: The number of mentions on this list indicates mentions on common posts plus user suggested alternatives. Hence, a higher number means a better poem alternative or higher similarity.

poem discussion

Log in or Post with

poem reviews and mentions

Posts with mentions or reviews of poem. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-10-22.
  • Show HN: Rust Web Framework
    13 projects | news.ycombinator.com | 22 Oct 2024
    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
    14 projects | news.ycombinator.com | 6 Oct 2024
    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
    7 projects | news.ycombinator.com | 27 Mar 2024
    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?
    2 projects | /r/rust | 9 Apr 2023
    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?
    4 projects | /r/rust | 5 Mar 2023
    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?
    1 project | /r/rust | 23 Feb 2023
    '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
    2 projects | /r/rust | 5 Feb 2023
    If you need built-in OpenAPI support, I can recommend Poem.
  • (Recommendation Request) Rust REST API framework; similar to Python's FastAPI(Python)
    3 projects | /r/rust | 21 Jan 2023
    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)!
    12 projects | /r/rust | 16 Jan 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
    3 projects | /r/rust | 24 Dec 2022
    Did you check out Poem? It seems promising, with openapi generation built in already.
  • A note from our sponsor - SaaSHub
    www.saashub.com | 10 Jul 2025
    SaaSHub helps you find the best software and product alternatives Learn more →

Stats

Basic poem repo stats
32
4,054
9.2
4 days ago

poem-web/poem is an open source project licensed under Apache License 2.0 which is an OSI approved license.

The primary programming language of poem is Rust.


Sponsored
InfluxDB – Built for High-Performance Time Series Workloads
InfluxDB 3 OSS is now GA. Transform, enrich, and act on time series data directly in the database. Automate critical tasks and eliminate the need to move data externally. Download now.
www.influxdata.com