perry VS wasmtime

Compare perry vs wasmtime and see what are their differences.

perry

A native TypeScript compiler written in Rust. Compiles TypeScript directly to executables using SWC and LLVM. (by PerryTS)

wasmtime

A lightweight WebAssembly runtime that is fast, secure, and standards-compliant (by bytecodealliance)
SaaSHub - Software Alternatives and Reviews
SaaSHub helps you find the best software and product alternatives
www.saashub.com
featured
perry wasmtime
12 205
3,610 18,144
38.2% 1.2%
9.9 9.9
7 days ago 6 days ago
Rust Rust
MIT License 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.

perry

Posts with mentions or reviews of perry. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-05-29.

wasmtime

Posts with mentions or reviews of wasmtime. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2026-06-04.
  • Show HN: WASM with JIT from a Swift SPM Package
    2 projects | news.ycombinator.com | 4 Jun 2026
    Hello HN,

    For my own needs I needed a powerful WASM engine that provides JIT acceleration, and use it from the convenience of the Swift Package Manager.

    So I ended up wrapping wasmtime (a Rust project) https://github.com/bytecodealliance/wasmtime/

    The SPM package does support most platforms swift supports, including mobile where JIT is simply not available.

    I'd be happy to hear from you if this is something you may be interested in using and what are your WASM use cases.

    Thanks :+1:

  • MCP servers, sandboxed — introducing ACT
    4 projects | dev.to | 8 May 2026
    Every ACT tool is a WebAssembly component running inside wasmtime — a full VM with a JIT, linear memory, and no ambient host syscalls. Out of the box the component has zero filesystem access, zero outbound network, and no way to spawn a process. Each capability it does use (wasi:filesystem, wasi:http) is declared in the component manifest at build time and granted by the operator at run time. The host enforces the intersection: a permissive operator can't escalate past the component's stated intent, a lazy component can't silently exceed the operator's grant. You hand a tool from ghcr.io/someone-else/whatever to your agent, and the worst-case blast radius is still bounded by the policy you wrote.
  • Building a JIT Compiler from Scratch: Part 1 — Why Build a JIT Compiler?
    5 projects | dev.to | 19 Feb 2026
    Cranelift — Production-quality code generator (we’ll reference this)
  • Show HN: Pdfwithlove – PDF tools that run 100% locally (no uploads, no back end)
    4 projects | news.ycombinator.com | 18 Jan 2026
    It's possible to run WebAssembly programs from the command line (without any GUI) using WASI (see e.g. https://github.com/WebAssembly/WASI). Thus if the user downloads pdfconverter.wasi , and the user already has e.g. wasmtime installed, they can run `wasmtime pdfconverter.wasi input.pdf output.pdf` from the command line (see https://github.com/bytecodealliance/wasmtime/blob/main/docs/... for details).

    In addition to the web site, the Electron app and the Chrome extension, you may want to distribute a command-line version of your tools as WASI-style .wasm program files. If you do so, I would exclusively use the them this way, from the command line.

  • Orbis: Building a Plugin-Driven Desktop Platform with Rust and React
    3 projects | dev.to | 27 Dec 2025
    Here's where it gets interesting. Plugins are compiled to WASM and run in wasmtime sandboxes. This means:
  • PGlite – Embeddable Postgres
    11 projects | news.ycombinator.com | 4 Dec 2025
  • XRPL Programmability: WASM Runtime Revisit
    3 projects | dev.to | 1 Dec 2025
    Upon finishing the initial development of the Smart Escrows implementation and reaching the review and testing stage, the RippleX programmability team decided to revisit the decision on the initial selection of WAMR as our WebAssembly VM runtime, to ensure the chosen runtime is well-positioned for success in our XRPL usage context. The team now had better context on VM internals and a better understanding of WebAssembly in general, which enabled a deeper analysis now compared to when the initial decision was made. Based on some initial meetings with members of the WebAssembly community, the team investigated two alternative runtimes (Wasmi and Wasmtime).
  • Wasmtime Bactched Fuel Increments
    1 project | news.ycombinator.com | 29 Nov 2025
  • Copy-and-Patch: A Copy-and-Patch Tutorial
    2 projects | news.ycombinator.com | 14 Oct 2025
    Cranelift does not use copy-and-patch. Consider, for example, this file, which implements part of the instruction generation logic for x64: https://github.com/bytecodealliance/wasmtime/blob/main/crane...

    Copy-and-patch is a technique for reducing the amount of effort it takes to write a JIT by leaning on an existing AOT compiler's code generator. Instead of generating machine code yourself, you can get LLVM (or another compiler) to generate a small snippet of code for each operation in your internal IR. Then codegen is simply a matter of copying the precompiled snippet and patching up the references.

    The more resources are poured into a JIT, the less it is likely to use copy-and-patch. You get more control/flexibility doing codegen yourself.

    But see also Deegen for a pretty cool example of trying to push this approach as far as possible: https://aha.stanford.edu/deegen-meta-compiler-approach-high-...

  • Microsoft Flight Simulator 2024: WebAssembly API
    3 projects | news.ycombinator.com | 29 Jul 2025
    Sure, but your add-ons will need access to some of the world, which right now requires giving them access to all of WASI, as far as I know. There’s no permissions model. That’s worse than the JVM.

    (It seems like they want to implement one… someday. It’s vague: https://github.com/bytecodealliance/wasmtime/blob/main/docs/...)

What are some alternatives?

When comparing perry and wasmtime you can also consider the following projects:

rustc_codegen_cranelift - Cranelift based backend for rustc

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

lumina - Lumina is an eager-by-default natively compiled functional programming language with the core goals of readibility, practicality, compiler-driven development and simplicity.

wazero - wazero: the zero dependency WebAssembly runtime for Go developers

cranelift-jit-demo - JIT compiler and runtime for a toy language, using Cranelift

SSVM - WasmEdge is a lightweight, high-performance, and extensible WebAssembly runtime for cloud native, edge, and decentralized applications. It powers serverless apps, embedded functions, microservices, smart contracts, and IoT devices.

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 3rd most popular programming language
based on number of references?