wasmi VS extism

Compare wasmi vs extism and see what are their differences.

extism

The framework for building with WebAssembly (wasm). Easily load wasm modules, move data, call functions, and build extensible apps. (by extism)
CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
wasmi extism
6 56
1,693 4,800
1.7% 2.0%
9.5 8.4
7 days ago 22 days ago
Rust Rust
Apache License 2.0 BSD 3-clause "New" or "Revised" 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.

wasmi

Posts with mentions or reviews of wasmi. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2024-12-19.
  • Wasm3 + TinyGo on PSP
    6 projects | dev.to | 19 Dec 2024
    There was also an option to use Rust and wasmi for the runtime, but although it worked on emulators like PPSSPP, errors occurred on the actual hardware (as shown in the screenshot below).
  • Wasmi v0.32: WebAssembly interpreter is now faster than
    6 projects | news.ycombinator.com | 28 May 2024
    I'll need to dig a bit deeper in your implementation!

    [1] https://github.com/wasmi-labs/wasmi/blob/master/crates/wasmi...

  • Web assembly book?
    4 projects | /r/ProgrammingLanguages | 21 Apr 2023
  • How feasible is to create a WASM plugin system in Rust?
    8 projects | /r/rust | 25 Feb 2023
    There are lots of solutions to this, I was randomly looking into this yesterday purely out of curiosity and it looks to me like wasmi is the current go-to option.
  • Help with wasmi
    2 projects | /r/rust | 6 Nov 2021
    Hello guys, i was looking for a no std wasm interpreter and i found out about wasmi: https://github.com/paritytech/wasmi/, but when i tried it i get an error module env not found. I suspect that in my program i call an extern function putchar() to be able to print and wasmi doesnt support that, but other interpreters i tried support it, for example wain. Are there any alrernatives, or am i doing sth wrong here. I dont have a deep wasm knowledge, i was just wanted to experiment with wasm in a no std enviroment. Heres my code:

extism

Posts with mentions or reviews of extism. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-02-11.
  • WASM Will Replace Containers
    21 projects | news.ycombinator.com | 11 Feb 2025
    Application plugins could also be wasm. That lets plugin authors write in any language they want and have their plugin work. That's the idea behind the Extism framework:

    https://extism.org/

  • Lua Is So Underrated
    27 projects | news.ycombinator.com | 26 Dec 2024
    The WebAssembly component model is aimed at having composable components that can call each other. The components can be written in any language, compiled to WebAssembly, and interoperate: https://github.com/WebAssembly/component-model/

    Extism is a plugin framework for WebAssembly:

    https://extism.org/

    https://github.com/extism/extism

    Visual Studio Code can run WebAssembly extensions: https://code.visualstudio.com/blogs/2024/05/08/wasm

    A project to bring WebAssembly plugins to Godot: https://github.com/ashtonmeuser/godot-wasm

    WasmEdge can be embedded in applications: https://wasmedge.org/docs/embed/overview

    Wasmer can be embedded in applications: https://blog.wasmer.io/executing-webassembly-in-your-rust-ap...

    Wasmtime can be embedded in applications: https://docs.wasmtime.dev/lang.html

  • Isomorphic Web Components
    1 project | news.ycombinator.com | 15 Dec 2024
    Enhance is super cool and the fact that it can be called from basically any server language makes web components really powerful & reusable.

    I work on one of the underlying libraries that provide it said portability, Extism, and I love to see how WebAssembly actually bring some of the coolest parts of the web browser into other applications.

    https://github.com/extism/extism

  • WASM Is the New CGI
    7 projects | news.ycombinator.com | 10 Oct 2024
    this is exactly what we created Extism[0] and XTP[1] for!

    [0]: https://extism.org

  • Running Untrusted JavaScript Code
    3 projects | dev.to | 21 Jul 2024
    This is an exciting option as it provides a sandboxed environment to run code. One caveat is that you need an environment with Javascript bindings. However, an interesting project called Extism facilitates that. You might want to follow their tutorial.
  • Building a Cloud Development Kit (CDK)
    2 projects | dev.to | 3 Jul 2024
    Writing code to initiate a WebAssembly runtime, load our module, and call exported functions can be quite a lot of work. Luckily, the team at dylibso has thought about that and built Extism, a framework for building plugins with WebAssembly.
  • 'WebAssembly Is Finally Usable, Almost'
    1 project | news.ycombinator.com | 3 Jun 2024
    No one is saying anyone should stop exploring new paths. I don't know what you personally are bringing to the table as far as adding to the ambition, so excuse my naivety.

    The issue is that there is a misrepresentation by the Bytecode Alliance about WASI, from where it began, to where it is now. And a lot of this has been poorly communicated or not done at all. Which has only left many of us to think that they are trying to pull a fast one over the community to forcefully bring everyone along into Components when that is not desirable.

    > Wasm has not allowed actual inter-language operation at any serious scale.

    This is untrue, and you may just be unaware of efforts like Extism [0]. While it is intentionally not a binding generator, it does make it very easy to blend languages meaningfully. Disclaimer, I work on Extism and therefore have some bias :) We have different goals than the Component Model, so if you actually want what the component model offers, you should use it!

    I believe the easy solution here is to:

    1. stop referring to WASI 0.1 as "legacy", implying some obsolete status, or call 0.1 something entirely different. Let it continue to be an easily targetable interface to bridge to the rest of today's software.

    2. move WASI and Component Model code repositories out of the WebAssembly github org.

    This would clarify the distinction between WebAssembly (the standard) and WASI 0.2 / WIT / CM as a project by Bytecode Alliance. They are not the same, and while the Bytecode Alliance works on making things usable and ready, it doesn't cause harm or confusion for WebAssembly users.

    [0]: https://github.com/extism/extism

  • Building a dynamic lib plugin system for Rust
    1 project | news.ycombinator.com | 2 Jun 2024
    I'm looking forward to use: https://github.com/extism/extism
  • Extism: Cross-language framework for building with WebAssembly
    1 project | news.ycombinator.com | 2 May 2024
  • Extism – make all software programmable. Extend from within
    1 project | news.ycombinator.com | 8 Apr 2024

What are some alternatives?

When comparing wasmi and extism you can also consider the following projects:

duckscript - Simple, extendable and embeddable scripting language.

WASI - WebAssembly System Interface

csml-engine - CSML is an easy-to-use chatbot programming language and framework.

wit-bindgen - A language binding generator for WebAssembly interface types

perling-vm - Perling VM(a.k.a Perling Runtime Environment) is a interpreter for the compiled Perling byte code

wasmer - 🚀 Fast, secure, lightweight containers based on WebAssembly

CodeRabbit: AI Code Reviews for Developers
Revolutionize your code reviews with AI. CodeRabbit offers PR summaries, code walkthroughs, 1-click suggestions, and AST-based analysis. Boost productivity and code quality across all major languages with each PR.
coderabbit.ai
featured
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured

Did you know that Rust is
the 5th most popular programming language
based on number of references?