Convert Figma logo to code with AI

WebAssembly logocomponent-model

Repository for design and specification of the Component Model

1,037
85
1,037
119

Top Related Projects

A language binding generator for WebAssembly interface types

15,716

A lightweight WebAssembly runtime that is fast, secure, and standards-compliant

19,270

🚀 Fast, secure, lightweight containers based on WebAssembly

2,678

WebAssembly Virtual Machine

Emscripten: An LLVM-to-WebAssembly Compiler

Quick Overview

The WebAssembly/component-model repository is a specification and tooling project for the WebAssembly Component Model. It aims to define a standard for composing WebAssembly modules into larger applications, enabling better interoperability and reusability of WebAssembly components across different languages and environments.

Pros

  • Improves modularity and reusability of WebAssembly components
  • Enhances interoperability between different programming languages
  • Provides a standardized way to describe and compose WebAssembly modules
  • Facilitates the development of more complex WebAssembly-based applications

Cons

  • Still in development, with potential changes to the specification
  • Limited tooling support compared to more established ecosystems
  • May introduce additional complexity for developers new to WebAssembly
  • Adoption might be slow due to the nascent state of the WebAssembly ecosystem

Code Examples

As this is primarily a specification and tooling project, there are no direct code examples to provide. The repository focuses on defining the Component Model specification and providing tools for working with it, rather than being a code library for direct use in applications.

Getting Started

Since this is not a code library, there are no specific getting started instructions. However, developers interested in the WebAssembly Component Model can:

  1. Read the specification documents in the repository
  2. Explore the tools provided for working with the Component Model
  3. Follow the discussions and issues in the repository to stay updated on the project's progress
  4. Experiment with implementing the Component Model in their WebAssembly projects

For more information, visit the WebAssembly/component-model repository and review the documentation and resources provided there.

Competitor Comparisons

A language binding generator for WebAssembly interface types

Pros of wit-bindgen

  • More mature and actively maintained project with frequent updates
  • Provides language-specific bindings for multiple programming languages
  • Offers a CLI tool for generating bindings from WIT files

Cons of wit-bindgen

  • Focused specifically on bindings generation, not the entire component model
  • May require additional tools or libraries for full WebAssembly component integration
  • Limited to WIT (WebAssembly Interface Type) specifications

Code Comparison

component-model (conceptual example):

(component
  (import "env" "print" (func $print (param i32)))
  (func (export "hello")
    (call $print (i32.const 42))))

wit-bindgen (WIT definition):

interface example {
  print: func(value: i32)
}

world hello-world {
  import example
  export hello: func()
}

Summary

The component-model repository focuses on defining the broader WebAssembly component model specification, while wit-bindgen is a practical tool for generating language-specific bindings from WIT files. component-model provides a comprehensive framework for modular WebAssembly components, whereas wit-bindgen offers a more targeted solution for interface generation and language integration. Developers may find wit-bindgen more immediately useful for current projects, while the component-model shapes the future of WebAssembly modularity.

15,716

A lightweight WebAssembly runtime that is fast, secure, and standards-compliant

Pros of Wasmtime

  • Mature and widely-used WebAssembly runtime with extensive features
  • Supports multiple programming languages and platforms
  • Actively maintained with frequent updates and improvements

Cons of Wasmtime

  • Larger codebase and potentially more complex setup
  • May have higher resource usage for simpler WebAssembly applications
  • Learning curve for advanced features and optimizations

Code Comparison

Component-model (proposed specification):

(component
  (import "env" "log" (func $log (param string)))
  (core module $m
    (func (export "run") (result i32)
      (call $log (string.const "Hello, World!"))
      (i32.const 42)))
  (core instance $i (instantiate $m))
  (func (export "start") (result s32) (canon lift (core func $i "run"))))

Wasmtime (runtime implementation):

let engine = Engine::default();
let module = Module::from_file(&engine, "example.wasm")?;
let mut store = Store::new(&engine, ());
let instance = Instance::new(&mut store, &module, &[])?;
let start = instance.get_func(&mut store, "start")?;
let result = start.call(&mut store, &[])?;
19,270

🚀 Fast, secure, lightweight containers based on WebAssembly

Pros of Wasmer

  • More mature and production-ready, with a larger ecosystem and community support
  • Offers a standalone runtime for WebAssembly, allowing execution outside of web browsers
  • Provides language integrations for multiple programming languages, enhancing versatility

Cons of Wasmer

  • Focused primarily on WebAssembly execution, rather than the broader component model
  • May have a steeper learning curve for developers new to WebAssembly concepts
  • Less emphasis on standardization and interoperability across different WebAssembly implementations

Code Comparison

Component Model:

(component
  (import "env" "log" (func $log (param string)))
  (core module $m
    (func (export "run") (param i32) (result i32)
      local.get 0
      i32.const 1
      i32.add))
  (core instance $i (instantiate $m))
  (func (export "increment") (param i32) (result i32)
    (call $i "run" (local.get 0))))

Wasmer:

use wasmer::{Store, Module, Instance, Value, imports};

let module = Module::from_file(&store, "example.wasm")?;
let import_object = imports! {};
let instance = Instance::new(&module, &import_object)?;
let run = instance.exports.get_function("run")?;
let result = run.call(&[Value::I32(5)])?;

Note: The code examples showcase different aspects of each project, as they serve different purposes within the WebAssembly ecosystem.

2,678

WebAssembly Virtual Machine

Pros of WAVM

  • Standalone runtime for WebAssembly, not tied to specific component model
  • Supports JIT compilation for improved performance
  • Implements WASI for system interface functionality

Cons of WAVM

  • Less focus on component-based architecture
  • May have limited interoperability with other WebAssembly runtimes
  • Potentially higher resource usage due to JIT compilation

Code Comparison

WAVM example:

#include "WAVM/Runtime/Runtime.h"

WAVM::Runtime::Instance* instance = instantiateModule(module, importObjects);
WAVM::Runtime::Function* function = asFunctionNullable(getInstanceExport(instance, "main"));
WAVM::Runtime::invokeFunction(context, function, {});

Component Model example:

(component
  (import "math" (func $add (param i32 i32) (result i32)))
  (core module $m
    (func (export "calculate") (param i32 i32) (result i32)
      local.get 0
      local.get 1
      call $add))
  (export "calculate" (func $m "calculate")))

The WAVM code demonstrates low-level runtime manipulation, while the Component Model example shows a higher-level, declarative approach to defining components and their interactions.

Emscripten: An LLVM-to-WebAssembly Compiler

Pros of Emscripten

  • Mature and widely adopted toolchain for compiling C/C++ to WebAssembly
  • Extensive documentation and community support
  • Provides a complete runtime environment, including libc implementation

Cons of Emscripten

  • Larger output size due to included runtime and libraries
  • Less flexible for non-C/C++ languages or custom runtimes
  • May introduce overhead for simpler projects that don't require full emulation

Code Comparison

Emscripten (compiling C to WebAssembly):

#include <emscripten.h>

EMSCRIPTEN_KEEPALIVE
int add(int a, int b) {
    return a + b;
}

Component Model (hypothetical interface definition):

interface Math {
    add(a: i32, b: i32) -> i32;
}

The Component Model focuses on defining language-agnostic interfaces, while Emscripten provides a complete toolchain for compiling existing C/C++ code to WebAssembly. Emscripten is more suitable for porting large codebases, while the Component Model aims to create interoperable WebAssembly modules across different languages and environments.

Convert Figma logo designs to code with AI

Visual Copilot

Introducing Visual Copilot: A new AI model to turn Figma designs to high quality code using your components.

Try Visual Copilot

README

Component Model design and specification

This repository is where the component model is being standardized. For a more user-focused explanation, take a look at the Component Model Documentation.

This repository contains the high-level goals, use cases, design choices and FAQ of the Component Model as well as more-detailed, low-level explainer docs describing the IDL, text format, binary format, concurrency model and Canonical ABI.

In the future, this repository will additionally contain a formal spec, reference interpreter and test suite.

Milestones

The Component Model is currently being incrementally developed and stabilized as part of WASI Preview 2. The subsequent WASI Preview 3 milestone will be primarily concerned with the addition of async support.

Contributing

All Component Model work is done as part of the W3C WebAssembly Community Group. To contribute to any of these repositories, see the Community Group's Contributing Guidelines.