realworld-axum-sqlx VS workers-rs

Compare realworld-axum-sqlx vs workers-rs and see what are their differences.

realworld-axum-sqlx

A Rust implementation of the Realworld demo app spec using Axum and SQLx. (by launchbadge)

workers-rs

Write Cloudflare Workers in 100% Rust via WebAssembly (by cloudflare)
Our great sponsors
  • InfluxDB - Power Real-Time Data Analytics at Scale
  • WorkOS - The modern identity platform for B2B SaaS
  • SaaSHub - Software Alternatives and Reviews
realworld-axum-sqlx workers-rs
12 16
671 2,262
5.1% 5.8%
0.0 8.5
4 months ago 4 days ago
Rust Rust
GNU Affero General Public License v3.0 Apache License 2.0
The number of mentions indicates the total number of mentions that we've tracked plus the number of user suggested alternatives.
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.

realworld-axum-sqlx

Posts with mentions or reviews of realworld-axum-sqlx. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-02-13.
  • Hey Rustaceans! Got a question? Ask here (7/2023)!
    14 projects | /r/rust | 13 Feb 2023
    This was one of the objectives when we created https://github.com/launchbadge/realworld-axum-sqlx
  • Hey Rustaceans! Got a question? Ask here! (28/2022)!
    21 projects | /r/rust | 11 Jul 2022
    Clap can actually load values from the environment now: https://github.com/launchbadge/realworld-axum-sqlx/blob/main/src/config.rs
  • Entrait v0.3.2
    5 projects | /r/rust | 27 Jun 2022
    I'm working on a PoC to rewrite the realworld app from launchbadge to use entrait: https://github.com/audunhalland/rust-realworld-ioc/ (work in progress), maybe it can be used as inspiration.
  • A(nother) Realworld implementation: tokio, axum, and sqlx
    2 projects | /r/rust | 21 Jun 2022
    While there already exists a fantastic implementation of the spec written by the sqlx authors, I wanted to use this as a Rust playground for myself and others to poke around the ecosystem. I'm sure there's quite a bit of room for improvement, and I'm looking forward to opening this up for those in a similar boat and learning Rust.
  • Hey Rustaceans! Got a question? Ask here! (25/2022)!
    13 projects | /r/rust | 20 Jun 2022
    I'm following some examples for creating a server with Axum like realworld-axum-sqlx and customize-extractor-error. The second one shows how to get request errors related to json and I'd like to know if there's anyway to make the where clause more error-proof.
  • Code review request
    2 projects | /r/rust | 3 Jun 2022
    I've just migrated from actix-web to axum, so it's the backend that I'm interested in people's thoughs on. I've taken a fair amount of design inspiration from the realworld-axum-sqlx project.
  • The Rustacean way to build a complete web app?
    3 projects | /r/rust | 2 May 2022
    Here is a realworld-spec in Axum: https://github.com/launchbadge/realworld-axum-sqlx
  • Backend using rust
    2 projects | /r/rust | 2 Apr 2022
    https://github.com/launchbadge/realworld-axum-sqlx is Axum based implementation of the Realworld specification
  • Tools to generate type safe code models from Postgres schema?
    3 projects | /r/PostgreSQL | 27 Mar 2022
    Here's an example codebase using these features: https://github.com/launchbadge/realworld-axum-sqlx/blob/main/src/http/articles/listing.rs
  • Web development
    5 projects | /r/rust | 6 Feb 2022
    Realworld Spec with Axum

workers-rs

Posts with mentions or reviews of workers-rs. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-04-02.
  • Python Cloudflare Workers
    4 projects | news.ycombinator.com | 2 Apr 2024
    - The speed of the Python interpreter running in WebAssembly

    Today, Python cold starts are slower than cold starts for a JavaScript Worker of equivalent size. A basic "Hello World" Worker written in JavaScript has a near zero cold start time, while a Python Worker has a cold start under 1 second.

    That's because we still need to load Pyodide into your Worker on-demand when a request comes in. The blog post describes what we're working on to reduce this — making Pyodide already available upfront.

    Once a Python Worker has gone through a cold start though, the differences are more on the margins — maybe a handful milliseconds, depending on what happens during the request.

    - There is a slight cost (think — microseconds not milliseconds) to crossing the "bridge" between JavaScript and WebAssembly — for example, by performing I/O or async operations. This difference tends to be minimal — generally something measured in microseconds not milliseconds. People with performance sensitive Workers already write them in Rust https://github.com/cloudflare/workers-rs, which also relies on bridging between JavaScript and WebAssembly.

    - The Python interpreter that Pyodide provides, that runs in WebAssembly, isn't as fast as the years and years of optimization that have gone into making JavaScript fast in V8. But it's still relatively early days for Pyodide, compared to the JS engine in V8 — there are parts of its code where we think there are big perf gains to be had. We're looking forward to upstreaming performance improvements, and there are WebAssembly proposals that help here too.

  • Cloudflare Workers Introduces Connect() API to Create TCP Sockets
    3 projects | news.ycombinator.com | 29 May 2023
    Not yet, but we're working on that https://github.com/cloudflare/workers-rs/pull/324
  • How much Rust work is actually going on at Cloudflare?
    2 projects | /r/rust | 15 Jan 2023
    I'm also in the Workers org but I have had a bit of interaction with Rust. There's some Rust in the Workers runtime using lol-html for HTMLRewriter as well as some tooling and there's the full blown workers-rs framework that I work on, but that's about it for the Rust I work on regularly.
  • std.rs is seeking a new owner
    3 projects | /r/rust | 9 Dec 2022
    I'm an engineer at Cloudflare working on Workers (and a maintainer of workers-rs) and I'd love to help whoever ends up maintaining this get that PR rewriting it in Rust across the line.
  • Workerd : le moteur d’exécution JavaScript / Wasm qui alimente les Workers de Cloudflare …
    9 projects | dev.to | 4 Dec 2022
    GitHub - cloudflare/workers-rs: Write Cloudflare Workers in 100% Rust via WebAssembly
  • Turbopack - The successor to Webpack
    2 projects | /r/programming | 26 Oct 2022
    I never said it was, but thankfully nowadays there are plenty of other tools that are fast enough to keep the dev cycle quick. Personally esbuild is my go-to when I need a bundler but I've grown really fond of SWC native api, we used to use it at work for our wasm build tool for our workers-rs framework.
  • Announcing support for WASI on Cloudflare Workers
    3 projects | /r/rust | 8 Jul 2022
    There's actually a rust framework for Workers https://github.com/cloudflare/workers-rs
  • What's your experience with FaaS and Rust?
    6 projects | /r/rust | 29 Jun 2022
    I'm a maintainer of the of the Cloudflare workers-rs project to allow you to write serverless functions in Rust running as WASM in our V8-based runtime. There's certainly some rough spots (doesn't have complete parity with our default JS runtime apis), but if you're concerned with cold start times and you don't need a full containerized environment I think it's a solid choice.
  • Hey Rustaceans! Got a question? Ask here! (25/2022)!
    13 projects | /r/rust | 20 Jun 2022
    Most likely, it should, we just haven't had the time to fully implement it or add a library to wrap the FFI. Please let us know you need a feature by opening an issue.
  • Warp or Rocket.rs or Actix Web?
    8 projects | /r/rust | 29 May 2022
    I may be biased, as the original project author, but I’d recommend using Cloudflare Workers https://github.com/cloudflare/workers-rs - totally free their with very generous limits.

What are some alternatives?

When comparing realworld-axum-sqlx and workers-rs you can also consider the following projects:

zero-to-production - Code for "Zero To Production In Rust", a book on API development using Rust.

worker-kv - Rust bindings to Cloudflare Worker KV Stores

docker-rust - The official Docker images for Rust

boringtun - Userspace WireGuard® Implementation in Rust

realworld - "The mother of all demo apps" — Exemplary fullstack Medium.com clone powered by React, Angular, Node, Django, and many more

workers-wasi

Seed - A Rust framework for creating web apps

litestream - Streaming replication for SQLite.

validator - Simple validation for Rust structs

ssr-workers - Rust based Cloudflare Worker with SSR

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

lilredirector - 🔌⚡️ Redirector engine built for Cloudflare Workers