v86 VS gc

Compare v86 vs gc and see what are their differences.

v86

x86 PC emulator and x86-to-wasm JIT, running in the browser (by copy)

gc

Branch of the spec repo scoped to discussion of GC integration in WebAssembly (by 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
v86 gc
163 46
20,463 1,035
1.2% 1.5%
9.5 8.2
10 days ago 4 months ago
JavaScript WebAssembly
BSD 2-clause "Simplified" License GNU General Public License v3.0 or later
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.

v86

Posts with mentions or reviews of v86. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-03-18.

gc

Posts with mentions or reviews of gc. We have used some of these posts to build our list of alternatives and similar projects. The last one was on 2025-02-22.
  • Kickstart insight needed: A new retrofitted C dialect?
    14 projects | news.ycombinator.com | 22 Feb 2025
    Destructors? Destructors are fine as a feature. You're not supposed to use them as the first choice but they are a great "safety net" for disposable types that did not get dispose to ensure that production code stays resilient to unmanaged memory leaks when presented with bad code.

    Either way, you can read through this issue: https://github.com/WebAssembly/gc/issues/77

    Further discussion can be found here: https://github.com/dotnet/runtime/issues/94420

    Turning off destructors will not help even a little because the biggest pain points are support for byref pointers and insufficient degree of control over object memory layout.

  • Spin 3.0 – open-source tooling for building and running WASM apps
    7 projects | news.ycombinator.com | 12 Nov 2024
    For the audience that would be looking to use the WASM Component Model, and not be an infrastructure implementer of it, whether or not they meet some definition of a method, the component model does define things called resources [1] that have "methods". You'll hold a "handle" to it like you would in your own programming language with the expected drop and/or GC semantics (once implemented [2]) because code is generated to access it like any other FFI like C/C++.

    With that in mind, the other confusing thing one may come across is composition vs linking within your WASM runtime that supports the Component Model. When you hear "composition" think of compile-time merging of libraries such that the bundle may have less unresolved dependencies of WASM code/implemented component interfaces. Anything unresolved needs to be linked at runtime with your WASM runtime of choice, like wasmtime [3]. Pretty interesting reading/potential after reading if you ask me -- sounds like you could implement something like a custom Java classloader hierarchy.

    But I'd agree with a statement saying it is still a long way for general usage.

    [1] https://github.com/WebAssembly/component-model/blob/5a34794d...

    [2] https://github.com/WebAssembly/gc

    [3] https://github.com/bytecodealliance/wasmtime/blob/ba8131c6bf...

    [4] https://www.digitalocean.com/community/tutorials/java-classl...

  • Why Google Sheets ported its calculation worker from JavaScript to WasmGC
    4 projects | news.ycombinator.com | 27 Jun 2024
    This post might help:

    https://v8.dev/blog/wasm-gc-porting

    See in particular the "getting started" section near the end:

    https://v8.dev/blog/wasm-gc-porting#getting-started

    At a lower level the overview in the WasmGC github repo is very good:

    https://github.com/WebAssembly/gc/blob/main/proposals/gc/Ove...

  • Bring garbage collected programming languages efficiently to WebAssembly
    16 projects | news.ycombinator.com | 3 Nov 2023
    It may take some time for WasmGC to be usable by .NET. Based on the discussions the first version of WasmGC does not have a good way to handle a few .NET specific scenarios, and said scenarios are "post-post-mvp". [0]

    My concern, of course, is that there is not much incentive for those features to be added if .NET is the only platform that needs them... at that point having a form of 'include' (to where a specific GC version can just be cached and loaded by another WASM assembly) would be more useful, despite the pain it would create.

    [0] - https://github.com/WebAssembly/gc/issues/77

  • WasmGC – Compile and run GC languages such as Kotlin, Java in Chrome browser
    4 projects | news.ycombinator.com | 2 Nov 2023
    Yes, that's definitely true: a single GC will not be optimal for everything, or even possible. Atm interior pointers are not supported at all, for example, but they are on the roadmap for later:

    https://github.com/WebAssembly/gc/blob/main/proposals/gc/Pos...

    What launched now is enough WasmGC to support a big and useful set of languages (Java, Kotlin, Dart, OCaml, Scheme), but a lot more work will be required here!

  • Learn WebAssembly by writing small programs
    7 projects | news.ycombinator.com | 5 Sep 2023
    GC proposal is from 2018: https://github.com/WebAssembly/proposals/issues/16 and there’s code: https://github.com/WebAssembly/gc/blob/master/proposals/gc/O...

    Seems like an awefully long time for progress to be made, given all the possibilities it would unlock.

  • The state of modern Web development and perspectives on improvements
    5 projects | dev.to | 24 Aug 2023
    First is the size. Writing a server-side and client-side program is possible with Rust, and the resulting WASM package will be small enough. At the same time, Microsoft Blazor converts C# code to WASM, but the client delivery has to include the reduced .NET runtime, taking several megabytes for a script. The same is true for GoLang, even with an attempt to reduce the runtime delivery in TinyGo WASM. Developers want to work with their favorite languages, whether it is Java, Kotlin, Dart, C#, F#, Swift, Ruby, Python, C, C++, GoLang, or Rust. These languages produce groups of runtimes. For example, JVM and .NET have many common parts, Ruby and Python are dynamically interpreted at runtime, and all mentioned depend on automatic garbage collection. For smaller WASM packages, browser vendors can include extended runtime implementations, for example, by delivering a general garbage collector as part of WASM. Garbage collection support by WASM is currently in progress: WASM GC, .NET WASM Notes.
  • Douglas Crockford: “We should stop using JavaScript”
    6 projects | news.ycombinator.com | 12 Jun 2023
    My understanding is that the main limitation is technical. WASM doens't do GC or the host system calling conventions and cannot interact directly with object from Javascript because of this. However, this is being worked[0] on and will be solved eventually. Even without this the performance overhead of bridging to JS is low enough that WASM frameworks can beat out React.

    0: https://github.com/WebAssembly/gc/blob/main/proposals/gc/Ove...

  • Question: WasmGC and state shared with JS with Kotlin/wasm or Multiplatform?
    1 project | /r/Kotlin | 12 May 2023
    I’ve just watched a video on YouTube from Google I/O 2023 on Flutter for the web. Kevin Moore explains that Flutter can compile to Wasm, but now that GC support has been added to the standard and WasmGC is supported in Chromium and Firefox, I’m quite intrigued.
  • Will implementing garbage collection in WebAssembly speed up Blazor?
    1 project | /r/Blazor | 5 Apr 2023
    I have found the main thread about using WebAssembly GC in C#: https://github.com/WebAssembly/gc/issues/77. If I understand it correctly, it is not possible to use the current prototype version of GC in C#.

What are some alternatives?

When comparing v86 and gc you can also consider the following projects:

webvm - Virtual Machine for the Web

simd - Branch of the spec repo scoped to discussion of SIMD in WebAssembly

adblock-rust - Brave's Rust-based adblock engine

interface-types

daedalOS - Desktop environment in the browser

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

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