express-c VS multiplix

Compare express-c vs multiplix and see what are their differences.

express-c

Fast, unopinionated, minimalist web framework for C (by williamcotton)

multiplix

An operating system kernel for RISC-V and AArch64 SBCs (by zyedidia)
InfluxDB - Power Real-Time Data Analytics at Scale
Get real-time insights from all types of time series data with InfluxDB. Ingest, query, and analyze billions of data points in real-time with unbounded cardinality.
www.influxdata.com
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
express-c multiplix
7 3
16 122
- -
6.3 8.3
3 months ago 9 months ago
C D
MIT License MIT License
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.

express-c

Posts with mentions or reviews of express-c. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-06-14.
  • Is Parallel Programming Hard, and, If So, What Can You Do About It? v2023.06.11a
    9 projects | news.ycombinator.com | 14 Jun 2023
    GCD/libdispatch is a fantastic approach to concurrency and you can build and install support for non-Apple operating systems:

    https://github.com/apple/swift-corelibs-libdispatch

    Here’s a simple echo server:

    https://github.com/williamcotton/c_playground/blob/master/sr...

    Here’s a simple multithreaded database pool:

    https://github.com/williamcotton/express-c/blob/master/src/d...

  • A highly intuitive visual guide on how memory allocation works, step by step
    3 projects | news.ycombinator.com | 22 May 2023
    Apache does this! And I do this in my own C web framework:

    https://github.com/williamcotton/express-c/blob/master/deps/...

  • My favorite C compiler flags during development
    3 projects | news.ycombinator.com | 29 Apr 2023
    Unfortunately not all of the sanitizers are working in clang for Apple Silicon machines. For my own CI pipeline I run both Darwin and Linux builds, leaks and valgrind respectively, along with the kitchen sink of compiler sanitizers:

    Here’s the GitHub actions for those platforms and a link to the Makefile:

    GitHub Action:

    https://github.com/williamcotton/express-c/blob/master/.gith...

    Makefile:

    https://github.com/williamcotton/express-c/blob/f2e1dde2f5a7...

  • The two types of C programmers (a provocative thesis)
    2 projects | news.ycombinator.com | 23 Apr 2023
    Lol, yeah, the libdispatch runtime is probably about as big as the Go runtime!

    I think this has a slight advantage in that it uses a memory arena for a per-request bump allocator so it should keep overall memory usage lower.

    The slowest part of all this has to do with Block_copy and the places where I’m very much treating blocks/closures in an OOP type manner.

    This could be fixed by writing a different function that did basically the same thing as Block_copy but for all the “methods” on an “object” in a single pass. But who has time for that? :D

    Here’s more about those performance issues and some text code that show how slow the approach is:

    https://github.com/williamcotton/express-c/tree/master/resea...

  • Software Dark Matter Is the Enemy of Software Transparency
    2 projects | news.ycombinator.com | 13 Nov 2022
    I’ve used an approach to copy only the shared libs from the build container to the production container. This not only gets rid of most of this “dark matter” but results in much smaller containers!

    https://github.com/williamcotton/express-c/blob/master/demo/...

  • Untangling Lifetimes: The Arena Allocator
    2 projects | news.ycombinator.com | 31 Oct 2022
    I use arenas for HTTP request handlers. The JSON built or parsed is only going to be around for the lifetime of the request. It's much simpler and faster to use an arena than to do reference counting wrapped around malloc/free.

    Here's an example where in a commit I swapped in an arena:

    https://github.com/williamcotton/express-c/commit/4ae53f38e3...

multiplix

Posts with mentions or reviews of multiplix. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-04-29.
  • Multiplix, operating system kernel for RISC-V and AArch64 SBCs
    1 project | /r/hypeurls | 1 Sep 2023
    1 project | news.ycombinator.com | 30 Aug 2023
  • My favorite C compiler flags during development
    3 projects | news.ycombinator.com | 29 Apr 2023
    You need to provide implementations of the callbacks yourself. For example, to use the address sanitizer you should use `-fsanitize=kernel-address`, and then the compiler will generate calls to `__asan_load8_noabort`, `__asan_load4_noabort`, `__asan_store8_noabort`... when loads/stores happen. In those functions, you need to implement the sanitizer yourself, and have it panic if it detects an invalid access (address sanitizers are usually implemented with shadow memory). You'll have to give your sanitizer enough shadow memory during initialization, and also add your own alloc/free sanitizer callbacks to your allocator (so the sanitizer knows when things are allocated/freed). I have an example [here](https://github.com/zyedidia/multiplix/blob/master/kernel/san...) that implements a basic ASAN and UBSAN in a kernel (it's written in D, but could be easily adapted to C or C++). Hopefully it's helpful!

What are some alternatives?

When comparing express-c and multiplix you can also consider the following projects:

c_playground - C Playground

rust-raspberrypi-OS-tutorials - :books: Learn to write an embedded OS in Rust :crab:

mandelbrot - Simple fractal generator

build - Armbian Linux build framework generates custom Debian or Ubuntu image for x86, aarch64, riscv64 & armhf

Hopac - http://hopac.github.io/Hopac/Hopac.html

rust-raspi3-OS-tutorials - :books: Learn to write an embedded OS in Rust :crab: [Moved to: https://github.com/rust-embedded/rust-raspberrypi-OS-tutorials]

futhark - :boom::computer::boom: A data-parallel functional programming language

guess-the-number - A bare metal kernel with only Guess The Number

gcc

raspberry-pi-os - Learning operating system development using Linux kernel and Raspberry Pi

swift-corelibs-libdispatch - The libdispatch Project, (a.k.a. Grand Central Dispatch), for concurrency on multicore hardware