Coder Social home page Coder Social logo

yvt / wasmtime-dotnet Goto Github PK

View Code? Open in Web Editor NEW

This project forked from bytecodealliance/wasmtime-dotnet

0.0 2.0 0.0 681 KB

.NET embedding of Wasmtime https://bytecodealliance.github.io/wasmtime-dotnet/

License: Apache License 2.0

C# 93.97% WebAssembly 6.03%

wasmtime-dotnet's Introduction

wasmtime-dotnet

.NET embedding of Wasmtime

A Bytecode Alliance project

CI status Latest Version Documentation

Installation

You can add a package reference with the .NET Core SDK:

$ dotnet add package --version 0.15.0-preview1 wasmtime

Note that the --version option is required because the package is currently prerelease.

Introduction

For this introduction, we'll be using a simple WebAssembly module that imports a hello function and exports a run function:

(module
  (func $hello (import "" "hello"))
  (func (export "run") (call $hello))
)

To use this module from .NET, create a new console project:

$ mkdir wasmintro
$ cd wasmintro
$ dotnet new console

Next, add a reference to the Wasmtime package:

$ dotnet add package --version 0.15.0-preview1 wasmtime

Replace the contents of Program.cs with the following code:

using System;
using Wasmtime;

namespace Tutorial
{
    class Program
    {
        static void Main(string[] args)
        {
            using var host = new Host();

            host.DefineFunction(
                "",
                "hello",
                () => Console.WriteLine("Hello from C#!")
            );

            using var module = host.LoadModuleText(
              "hello",
              "(module (func $hello (import \"\" \"hello\")) (func (export \"run\") (call $hello)))"
            );

            using dynamic instance = host.Instantiate(module);
            instance.run();
        }
    }
}

This host defines a function called hello that simply prints a hello message.

It then loads the module into the host in WebAssembly text format and invokes the module's run export.

To run the application, simply use dotnet:

$ dotnet run

This should print Hello from C#!.

Contributing

Building

Use dotnet to build the repository:

$ dotnet build

This will download the latest development snapshot of Wasmtime for your platform.

Testing

Use dotnet to run the unit tests:

$ dotnet test

Creating the NuGet package

Use dotnet to create a NuGet package:

$ cd src
$ dotnet pack -c Release

This will create a .nupkg file in src/bin/Release.

By default, local builds will use a -dev suffix for the package to differentiate between official packages and development packages.

wasmtime-dotnet's People

Contributors

peterhuene avatar redradist avatar austinwise avatar justingaffney avatar alexcrichton avatar sunfishcode avatar havarnov avatar

Watchers

James Cloos avatar  avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    ๐Ÿ–– Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. ๐Ÿ“Š๐Ÿ“ˆ๐ŸŽ‰

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google โค๏ธ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.