Skip to content
forked from jedisct1/as-wasi

An AssemblyScript API layer for WASI system calls.

License

Notifications You must be signed in to change notification settings

torch2424/as-wasi

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

An AssemblyScript layer for the WebAssembly System Interface (WASI)

WASI is an API providing access to the external world to WebAssembly modules.

as-wasi is an effort to expose the WASI standard set of system calls to AssemblyScript.

Usage

Example usage of the Console and Environ classes:

import { Console, Environ } from "../node_modules/as-wasi/assembly";

let env = new Environ();
let home = env.get("HOME")!;
Console.log(home);

About

An AssemblyScript API layer for WASI system calls.

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages

  • TypeScript 100.0%