movabletype VS wagi

Compare movabletype vs wagi and see what are their differences.

wagi

Write HTTP handlers in WebAssembly with a minimal amount of work (by deislabs)
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
movabletype wagi
2 14
400 867
0.0% 0.0%
9.9 1.8
6 days ago almost 2 years ago
Perl Rust
- 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.

movabletype

Posts with mentions or reviews of movabletype. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-27.
  • Reminiscing CGI Scripts
    3 projects | news.ycombinator.com | 27 Dec 2023
    Oh, weird. I was around before CGI scripts became commonplace on the web, and worked on a handful of projects in that space -- mostly in Perl, but also a bit in ColdFusion (shudder). I think there are some inaccuracies here, but didn't expect to read about someone exploring "old" CGI script technology today.

    > CGI scripts mostly went out of fashion because of their limitations around performance.

    Nah, performance was fine. It's mostly always been the case that the code running on the server isn't the bottleneck.

    CGI scripts went out of fashion for several reasons that fall into the categories "too complex to maintain" or "there's this new thing called PHP...".

    CGI scripts were often written in Perl, but also sometimes good ol' C, and occasionally some other oddball thing. But, Perl ruled the CGI script space. Over time, CGI scripts became more complex, as software often does. When people wanted something more than a simple mail-form, or a page visit counter, or a guestbook (remember those?), they'd often be faced with downloading, installing, and then maintaining a complex Perl application, which was a nightmare. Wanna see what a big Perl application looks like? Check out https://github.com/movabletype/movabletype.

    Perl just didn't lend itself to well-structured code. I say this as someone who really liked Perl, TMTOWTDI and all that, and resisted moving away from it for years. But really, once your CGI script started spanning multiple .pl files, you were gonna have a bad time.

    The other thing we didn't have was good templating. Handlebars and the like now just didn't really exist then. There were all kinds of ways to sort of gin up a templating system, but there were no standards and everything was homebrewed. This was really icky if you wanted to do something like make a site with a web editor -- forget all the wysiwyg stuff, just rendering the html in a clean and safe way and spitting it back out was a bit of a faff.

    Along came PHP. It had a few advantages right out of the gate: (a) you could inline it in html, and I really can't overstate just how amazing that was at the time -- suddenly you didn't need templates anymore, you just used the html you already had; (b) it came with a good enough standard library of calls that were mostly comprehensible; and (c) contrary to Perl, which Perl hackers readily referred to as "line noise", PHP's syntax was pretty clean. (Younger developers may scoff at the idea of PHP being easier to read than any other language, but it was true at the time, and older developers may grumble that it was possible to write clean Perl, and that's true too, but it's also true that Perl culture encouraged and delighted at horrid and inscrutable gibberish.)

    The one other thing PHP had going for it was mod-php, which was easy for sysadmins to install and worked right alongside mod-perl, which pretty much all of them knew how to install already. So, every little web host added support for PHP practically overnight.

    > When a CGI script is executed, it initiates a new process for each request. While this approach is straightforward, it becomes increasingly inefficient as web traffic volume grows.

    This is true, but largely irrelevant to why CGI scripts fell out of favor. Lots of people on-prem'd or colo'd their own stuff back then (I had a beige box on an ISDN once upon a time!), and it was really hard to get enough traffic to make a machine fall over because it was spawning too many processes. Usually your bandwidth would get saturated before that happened.

    There was, maybe, a brief period where this was sort of a thing, where 56k modems were everywhere that DSL wasn't and people started to pay companies to run stuff for them, but even then -- as now -- the bottleneck was usually not in the number of running processes.

    > Modern application servers like Uvicorn, Gunicorn, Puma, Unicorn or even Go’s standard server have addressed these inefficiencies by maintaining persistent server processes. This, along with the advantage of not having to bear the VM startup cost, has led people to opt for these alternatives.

    Heh, heh. Some people may be using those because they read on somebody's blog that everybody else is using those so they should probably use those too, but I could become a wealthy man betting $100 to every dollar that any web dev who thinks switching from LAMP, php-fpm, nginx, or whathaveyou to Spangly Animal Server is gonna be their big performance win hasn't actually done a comprehensive performance profile of their application. You are burning waaaaay more milliseconds on your JS dependencies than you are on spawning a new thread.

  • DEV.to and Perl
    4 projects | /r/perl | 24 Nov 2022
    Movable Type is written in Perl: https://github.com/movabletype/movabletype

wagi

Posts with mentions or reviews of wagi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2023-12-27.
  • Reminiscing CGI Scripts
    3 projects | news.ycombinator.com | 27 Dec 2023
    WAGI and WCGI are the WASM based spiritual successors.

    https://github.com/deislabs/wagi

    https://wasmer.io/posts/announcing-wcgi

  • A simple web server written in Awk
    4 projects | news.ycombinator.com | 19 Sep 2023
    Compile a CGI program in any language to WASI, then use https://github.com/deislabs/wagi to run it.
  • Running WASI binaries from your HTML using Web Components
    4 projects | news.ycombinator.com | 28 Aug 2023
    Yeah of course! They've got STDIN/STDOUT/STDERR and I've built a Virtual Filesystem. But if you're using WASI binaries locally they don't have that restriction.

    You might be interested in WAGI: https://github.com/deislabs/wagi

    And to catch up on WASI: https://xeiaso.net/talks/unix-philosophy-logical-extreme-was...

  • Waggy, the library for writing WAGI API handlers in Go
    3 projects | /r/golang | 28 Nov 2022
    As I'm sure you've heard, WASM has been growing in popularity and use over the past few years. And with the creation of WASI (Web Assembly System Interface) and WAGI (Web Assembly Gateway Interface), WASM is starting to venture outside of running just in the browser. And in the case of WAGI, if you've been programming since the earlier days of the internet, it might feel very similar to CGI programming (and that's because it's based on CGI1.1!) WAGI provides a way for developers to define handlers for HTTP requests and route them to specific functions inside of, or entire, WASM modules. It does so by piping the headers of the incoming request to os.Args[1:], piping the body of the incoming request to os.Stdin, and writing the response to os.Stdout. (To learn more about configuring, routing, compiling, and deploying WAGI routes, as well as the limitations of WAGI routes, please consult the WAGI docs and the TinyGo WASM docs)
  • Rethinking Virtualization for Back Ends
    2 projects | news.ycombinator.com | 27 Oct 2022
    What do you think of WAGI [1], which is basically CGI for WASM modules.

    [1]: https://github.com/deislabs/wagi/blob/main/docs/writing_modu...

  • Isolates, MicroVMs, and WebAssembly (In 2022)
    10 projects | news.ycombinator.com | 26 Sep 2022
  • The Promise of WASM
    4 projects | dev.to | 26 May 2022
    as serverless functions (https://github.com/deislabs/wagi)
  • Single Page Applications using Rust (with WASM)
    4 projects | news.ycombinator.com | 2 May 2022
    I'm experimenting with WASM & Rust but with a different framework named wagi, there's a great video by Rainer Stropek & Stefan Baumgartner that gives a little introduction to it [0]

    [0]: https://www.youtube.com/watch?v=9NDwHBjLlhQ

    [1]: https://github.com/deislabs/wagi

  • Building a WebAssembly-powered serverless platform
    4 projects | /r/programming | 18 Apr 2022
    Krustlet and WAGI are two such projects.
  • Introduction to Hippo: The WebAssembly PaaS
    1 project | news.ycombinator.com | 21 Sep 2021
    It does support it, the runtime we are currently using enables that -- see https://github.com/deislabs/wagi/blob/main/docs/writing_modu...

    Good point on the docs, I will open an issue and add some information about it, thanks!

What are some alternatives?

When comparing movabletype and wagi you can also consider the following projects:

blogs.perl.org - Templates and stuff for the blogs.perl.org web site

wasi-experimental-http - Experimental outbound HTTP support for WebAssembly and WASI

mojo - :sparkles: Mojolicious - Perl real-time web framework

wasmer-python - 🐍🕸 WebAssembly runtime for Python

wasm-to-oci - Use OCI registries to distribute Wasm modules

wizer - The WebAssembly Pre-Initializer

dioxus - Fullstack GUI library for web, desktop, mobile, and more.

wasi-vfs - A virtual filesystem layer for WASI.

gc - Branch of the spec repo scoped to discussion of GC integration in WebAssembly

wasmtime - A fast and secure runtime for WebAssembly

webassembly-tour - ⚙️ Take you through a tour of WebAssembly (WASM targets on WASI) with wasmCloud, Krustlet, WAGI, etc. 🌟 Give it a star if you like it.

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