Showing 17 open source projects for "wasm"

View related business solutions
  • MongoDB Atlas runs apps anywhere Icon
    MongoDB Atlas runs apps anywhere

    Deploy in 115+ regions with the modern database for every enterprise.

    MongoDB Atlas gives you the freedom to build and run modern applications anywhere—across AWS, Azure, and Google Cloud. With global availability in over 115 regions, Atlas lets you deploy close to your users, meet compliance needs, and scale with confidence across any geography.
    Start Free
  • AI-powered service management for IT and enterprise teams Icon
    AI-powered service management for IT and enterprise teams

    Enterprise-grade ITSM, for every business

    Give your IT, operations, and business teams the ability to deliver exceptional services—without the complexity. Maximize operational efficiency with refreshingly simple, AI-powered Freshservice.
    Try it Free
  • 1
    wasm-tools

    wasm-tools

    CLI and Rust libraries for low-level manipulation of WebAssembly

    wasm-tools is a comprehensive suite of command-line utilities and Rust libraries for working with WebAssembly modules at a low level, providing developers with the ability to inspect, validate, transform, and generate Wasm binaries. It includes a wide range of subcommands that handle tasks such as converting between text and binary formats, validating module structure, and printing human-readable representations of compiled code.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 2
    wasm-bindgen

    wasm-bindgen

    Facilitating high-level interactions between Wasm modules and Js

    ...One of its key design principles is efficiency, following a “pay only for what you use” model where only the required bindings are generated, minimizing unnecessary overhead. It also integrates into modern build pipelines through tools like wasm-pack.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 3
    Trunk

    Trunk

    Build, bundle & ship your Rust WASM application to the web

    Trunk is a WASM web application bundler for Rust. Trunk uses a simple, optional-config pattern for building & bundling WASM, JS snippets & other assets (images, CSS, SCSS) via a source HTML file. Any additional tools like wasm-bindgen and wasm-opt are automatically downloaded and managed by trunk. Therefore, no further steps are required. Get set up with your favorite wasm-bindgen based framework.
    Downloads: 1 This Week
    Last Update:
    See Project
  • 4
    runwasi

    runwasi

    Facilitates running Wasm / WASI workloads managed by containerd

    ...The project includes reference implementations and shims that connect Wasm runtimes to containerd, enabling developers to deploy and manage Wasm applications similarly to Docker containers. It also supports running workloads directly through containerd CLI tools or via orchestration systems, making it flexible for different deployment scenarios.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Gemini 3 and 200+ AI Models on One Platform Icon
    Gemini 3 and 200+ AI Models on One Platform

    Access Google's best plus Claude, Llama, and Gemma. Fine-tune and deploy from one console.

    Build generative AI apps with Vertex AI. Switch between models without switching platforms.
    Start Free
  • 5
    jawsm

    jawsm

    JavaScript to WASM compiler

    ...Unlike traditional approaches that require bundling a JavaScript engine or using a restricted subset of the language, Jawsm seeks to compile full JavaScript directly into WebAssembly, leveraging modern Wasm capabilities to execute code efficiently. The project is still in early development, with many JavaScript features and built-in objects not yet fully implemented, but its long-term goal is to achieve near-complete compatibility with the language. Its design is motivated by the desire to reduce runtime overhead and binary size compared to interpreter-based solutions, especially in environments where performance and portability are critical.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 6
    RustPython

    RustPython

    A Python Interpreter written in Rust

    RustPython is an implementation of the Python programming language written in Rust. Its goal is to provide a fast, embeddable, and secure interpreter that can be integrated into Rust applications or used standalone. Because it’s in Rust, it benefits from memory safety and modern tooling, allowing developers to compile Python into efficient binaries or embed it as a scripting engine in Rust projects. The interpreter aims to support the Python standard library, dynamic typing, garbage...
    Downloads: 5 This Week
    Last Update:
    See Project
  • 7
    Percy

    Percy

    Build frontend browser apps with Rust + WebAssembly

    ...Percy supports multiple rendering strategies, including client-side rendering, server-side rendering, and hybrid approaches, giving developers flexibility in how applications are delivered and optimized. The framework integrates closely with the Rust ecosystem, leveraging tools like wasm-bindgen to compile Rust code into WebAssembly modules that run in the browser. It emphasizes performance and type safety, allowing developers to build complex interfaces while benefiting from Rust’s compile-time guarantees. Percy also includes routing and component state management features, enabling the creation of full-featured single-page applications.
    Downloads: 2 This Week
    Last Update:
    See Project
  • 8
    Trunk

    Trunk

    Build, bundle & ship your Rust WASM application to the web

    Trunk is a modern web application bundler specifically designed for Rust and WebAssembly projects, providing a streamlined workflow for building, packaging, and deploying frontend applications. It operates around a minimal-configuration philosophy, using a single HTML entry point to orchestrate the bundling of WebAssembly modules, JavaScript snippets, stylesheets, and other assets. This approach simplifies the build process compared to traditional bundlers by reducing the need for complex...
    Downloads: 5 This Week
    Last Update:
    See Project
  • 9
    min-sized-rust

    min-sized-rust

    How to minimize Rust binary size

    min-sized-rust is a practical, research-oriented repository that demonstrates how to aggressively reduce the size of compiled Rust binaries through a combination of compiler flags, linker optimizations, and code-level techniques. By default, Rust prioritizes performance, debuggability, and compile speed, which often results in relatively large binaries, especially in debug mode or when including standard libraries. This project systematically explores how to invert those priorities, focusing...
    Downloads: 4 This Week
    Last Update:
    See Project
  • $300 in Free Credit Towards Top Cloud Services Icon
    $300 in Free Credit Towards Top Cloud Services

    Build VMs, containers, AI, databases, storage—all in one place.

    Start your project in minutes. After credits run out, 20+ products include free monthly usage. Only pay when you're ready to scale.
    Get Started
  • 10
    Wasmi

    Wasmi

    Efficient and versatile WebAssembly interpreter for embedded systems

    wasmi is a lightweight WebAssembly interpreter written in Rust that is designed to execute Wasm binaries efficiently in constrained or embedded environments. Unlike JIT-based runtimes, wasmi focuses on interpretation, prioritizing portability, determinism, and low resource usage over maximum raw performance. It is particularly well-suited for blockchain systems, embedded devices, and other contexts where predictable execution and minimal dependencies are critical.
    Downloads: 3 This Week
    Last Update:
    See Project
  • 11
    Gloo

    Gloo

    A modular toolkit for building fast, reliable Web applications

    Gloo is a modular toolkit for building web applications in Rust using WebAssembly, providing ergonomic abstractions over low-level browser APIs. Instead of acting as a full framework, Gloo is designed as a collection of small, focused libraries that developers can use individually or together depending on their needs. It wraps complex bindings from libraries like web-sys and js-sys, making browser APIs easier to use in idiomatic Rust while maintaining performance and type safety. The toolkit...
    Downloads: 2 This Week
    Last Update:
    See Project
  • 12
    Yew

    Yew

    Rust / Wasm framework for building client web apps

    A framework for creating reliable and efficient web applications. Features a component-based framework that makes it easy to create interactive UIs. Developers who have experience with frameworks like React and Elm should feel quite at home when using Yew. Features a macro for declaring interactive HTML with Rust expressions. Developers who have experience using JSX in React should feel quite at home when using Yew. Features server-side rendering for all the SEO and enhancements of the...
    Downloads: 0 This Week
    Last Update:
    See Project
  • 13
    Voy

    Voy

    A WASM vector similarity search written in Rust

    Voy is a lightweight WebAssembly-based vector similarity search engine written in Rust that enables semantic search capabilities directly in browser or edge environments. It is designed to operate on embeddings generated from text or other data, allowing applications to perform meaning-based search rather than simple keyword matching. The engine uses efficient data structures such as k-d trees to index vectors and perform fast nearest-neighbor queries, making it suitable for real-time search...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 14
    printpdf

    printpdf

    Rust / WASM library for reading, writing and rendering PDF

    printpdf is a Rust library for creating, reading, writing, and rendering PDF documents, providing developers with fine-grained control over document generation and layout. It supports a wide range of PDF features, including pages, layers, annotations, vector graphics, images, and embedded fonts, allowing the creation of complex and professional documents. The library emphasizes manual positioning of elements, giving developers precise control over layout and rendering rather than relying on...
    Downloads: 1 This Week
    Last Update:
    See Project
  • 15
    Krustlet

    Krustlet

    Kubernetes Rust Kubelet

    ...It is designed to integrate seamlessly into existing Kubernetes clusters, allowing developers to schedule and manage Wasm workloads using familiar Kubernetes APIs and tooling.
    Downloads: 4 This Week
    Last Update:
    See Project
  • 16
    Lucet

    Lucet

    Lucet, the Sandboxing WebAssembly Compiler.

    Lucet is a native WebAssembly compiler and runtime designed to securely execute untrusted code with high performance and strong isolation guarantees. Developed by the Bytecode Alliance, it focuses on ahead-of-time compilation, converting WebAssembly modules into native machine code before execution to achieve fast startup times and predictable performance. Lucet is particularly notable for its use in edge computing environments, where low latency and efficient resource usage are critical,...
    Downloads: 4 This Week
    Last Update:
    See Project
  • 17
    Twiggy

    Twiggy

    Twiggy is a code size profiler

    Twiggy is a specialized code size profiler designed for analyzing WebAssembly (Wasm) binaries, helping developers understand why their compiled output is large and how different functions contribute to that size. It works by inspecting a binary’s call graph and providing detailed breakdowns of which functions are included and how they are interconnected, allowing developers to trace dependencies and identify unnecessary code paths.
    Downloads: 1 This Week
    Last Update:
    See Project
  • Previous
  • You're on page 1
  • Next
MongoDB Logo MongoDB