Skip to content

Commit

Permalink
update README.md
Browse files Browse the repository at this point in the history
  • Loading branch information
kateinoigakukun committed Jul 9, 2022
1 parent 37a9272 commit 664ffbc
Showing 1 changed file with 16 additions and 1 deletion.
17 changes: 16 additions & 1 deletion README.md
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# μWASI

This library provides a WASI implementation in a tree-shaking friendly way.
This library provides a WASI implementation for Node.js and browsers in a tree-shaking friendly way.
The system calls provided by this library are configurable.

With minimal configuration, it provides WASI system calls which just return `WASI_ENOSYS`.
Expand Down Expand Up @@ -59,3 +59,18 @@ const wasi = new WASI({
features: [useStdio()],
});
```

## Implementation Status

| `API` | `Status` | `Notes` |
|-------|----------|---------|
| `args_XXX` || |
| `clock_XXX` || Monotonic clock is unavailable due to JS API limitation |
| `environ_XXX` || |
| `fd_XXX` | 🚧 | stdin/stdout/stderr are supported |
| `path_XXX` || |
| `poll_oneoff` || |
| `proc_XXX` || |
| `random_get` || |
| `sched_yield` || |
| `sock_XXX` || |

0 comments on commit 664ffbc

Please sign in to comment.