Skip to content

Commit 664ffbc

Browse files
update README.md
1 parent 37a9272 commit 664ffbc

File tree

1 file changed

+16
-1
lines changed

1 file changed

+16
-1
lines changed

README.md

Lines changed: 16 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,6 @@
11
# μWASI
22

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

66
With minimal configuration, it provides WASI system calls which just return `WASI_ENOSYS`.
@@ -59,3 +59,18 @@ const wasi = new WASI({
5959
features: [useStdio()],
6060
});
6161
```
62+
63+
## Implementation Status
64+
65+
| `API` | `Status` | `Notes` |
66+
|-------|----------|---------|
67+
| `args_XXX` || |
68+
| `clock_XXX` || Monotonic clock is unavailable due to JS API limitation |
69+
| `environ_XXX` || |
70+
| `fd_XXX` | 🚧 | stdin/stdout/stderr are supported |
71+
| `path_XXX` || |
72+
| `poll_oneoff` || |
73+
| `proc_XXX` || |
74+
| `random_get` || |
75+
| `sched_yield` || |
76+
| `sock_XXX` || |

0 commit comments

Comments
 (0)