wasi-libc VS workers-rs

Compare wasi-libc vs workers-rs and see what are their differences.

wasi-libc

WASI libc implementation for WebAssembly (by WebAssembly)

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
wasi-libc workers-rs
48 16
794 2,262
2.3% 5.8%
7.7 8.5
13 days ago 6 days ago
C Rust
GNU General Public License v3.0 or later 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.

wasi-libc

Posts with mentions or reviews of wasi-libc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-09.
  • I am curious. How many of you work on a windows system?
    2 projects | /r/developersIndia | 9 Dec 2023
    Now there are projects like WASI that allows for interfacing with system resources for WASM code this allows for devs to target WASM runtime for their apps sliding the apps to run locally on any OS without any porting required. This could be a game changer in the future like Docker and containers was in the past decade.
  • How to select some elements from array randomly?
    2 projects | /r/typst | 7 Dec 2023
    So it doesn’t seem like there has been progress on a pseudo-random number generator function for typst, but there are multiple other ways to solve this: 1. Just don’t. Typst has this functional philosophy, there one input always produces the same output. (not an answer to your question tho) 2. Interface with a webassembly module which has a random number generator. So you could e.g. compile c to wasm and statically link a libc version. You would then just have to export the rand() function. (You could use any lang for this, which has a stdlib with a pseudo random number generator) 3. Implement your own. Random number generators are actually not that hard something like an LCG isn’t to complex. (Id provide an example but im on my phone rn)
  • Lapce Editor v0.3 Released
    9 projects | news.ycombinator.com | 14 Nov 2023
    Actually WASI[0] will be a better alternative, IIRC extism serialize and deserialize the data that you want to pass every time, adding a lot of overhead.

    [0] https://wasi.dev

  • Wasix, the Superset of WASI Supporting Threads, Processes and Sockets
    6 projects | news.ycombinator.com | 30 May 2023
    Actually, it was in wasi-libc: https://github.com/WebAssembly/wasi-libc/blob/main/libc-bott...
  • Valheim: Regarding Mods
    2 projects | /r/Games | 29 May 2023
    Proper isolation in C# is only now becoming a thing, with .Net support for WASI, which is essentially a WebAssembly sandbox which can be given extremely granular privileges (such as access to spefic file system directories, or an effective virtual file system). As an upside, the idea is that it should be possible to write the WASI packages in more or less anything.
  • Hardening Drupal with WebAssembly
    3 projects | news.ycombinator.com | 29 May 2023
    Wasm Labs dev here :)

    In mod_wasm, there are some differences with a pure CGI implementation. When Apache boots, it loads the configuration and initializes the WasmVM. When a new HTTP request arrives, the VM is ready so you don't need to initialize a different process to manage it.

    You still need to process the request and pass the data to the Wasm module. This step is done via STDIN through the WebAssembly System Interface (WASI) implementation [0]. The same happens in the opposite direction, as the module returns the data via STDOUT.

    So, the CGI pattern is still there, but it doesn't require new processes and all the code runs in a sandbox.

    However this is not the only way you can run a Wasm module. In this specific case, we use CGI via WASI. In other cases, you may compile a module to fulfill a specific API, like ProxyWasm [1] to create HTTP filters for proxies like Envoy.

    - [0] https://wasi.dev/

    - [1] https://github.com/proxy-wasm/spec

  • Compile emacs to wasm?
    2 projects | /r/emacs | 22 May 2023
    Never done that, but I think you need this: https://wasi.dev/
  • Extending web applications with WebAssembly and Python
    5 projects | news.ycombinator.com | 10 May 2023
    The Python builds from the WebAssembly language runtimes [0] project target the WebAssembly System Interfaces (WASI) [1]. It allows the Python interpreter to interact with resources like the filesystem.

    Many server-side Wasm runtimes supports WASI out of the box. For the browser, you need to provide a polyfill to emulate these resources like the one provided by the WASI team [2].

    Regarding SQLite, these builds include libsqlite so you should be able to use it :)

    - [0] https://github.com/vmware-labs/webassembly-language-runtimes

    - [1] https://wasi.dev/

    - [2] https://wasi.dev/polyfill/

  • How to Debug WASI Pipelines with ITK-Wasm
    6 projects | dev.to | 2 Mar 2023
    Effective debugging results in effective programming; itk-wasm makes effective debugging of WebAssembly possible. In this tutorial, adapted from the itk-wasm documentation, we walk through how to debug a C++ data processing pipeline with the mature, native binary debugging tools that are comfortable for developers. This is a fully featured way to ensure the base correctness of a processing pipeline. Next, we will walk through an interactive debugging experience for WASI WebAssembly. With itk-wasm, we can debug the same source code in either context with an interactive debugger. We also have a convenvient way to pass data from our local filesystem into a WebAssembly (Wasm) processing pipeline.
  • Running Go code inside a NodeJS app with WASM (Part 1/2, 2023)
    4 projects | dev.to | 13 Feb 2023
    Communication between the WASM module and the rest of the application needs to be done in very simple types (bytes, ints and floats). No complex types are supported yet. This is why most WASM compilers also provide some glue-code to map between complex types like strings or arrays. The Web Assembly System Interface (WAS) is an on-progress standard aimed to solve this last limitation; once it's mature it will allow easy interoperation with almost every environment. WASI is already available in some WSAM compilers and runtimes.

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 wasi-libc and workers-rs you can also consider the following projects:

wasm-bindgen - Facilitating high-level interactions between Wasm modules and JavaScript

realworld-axum-sqlx - A Rust implementation of the Realworld demo app spec using Axum and SQLx.

wasi-sdk - WASI-enabled WebAssembly C/C++ toolchain

worker-kv - Rust bindings to Cloudflare Worker KV Stores

wasmer - 🚀 The leading Wasm Runtime supporting WASIX, WASI and Emscripten

boringtun - Userspace WireGuard® Implementation in Rust

wasmtime - A fast and secure runtime for WebAssembly

workers-wasi

WASI - WebAssembly System Interface

litestream - Streaming replication for SQLite.

binaryen - Optimizer and compiler/toolchain library for WebAssembly

ssr-workers - Rust based Cloudflare Worker with SSR