File tree Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Expand file tree Collapse file tree 1 file changed +16
-1
lines changed Original file line number Diff line number Diff line change 1
1
# μWASI
2
2
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.
4
4
The system calls provided by this library are configurable.
5
5
6
6
With minimal configuration, it provides WASI system calls which just return ` WASI_ENOSYS ` .
@@ -59,3 +59,18 @@ const wasi = new WASI({
59
59
features: [useStdio ()],
60
60
});
61
61
```
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 ` | ❌ | |
You can’t perform that action at this time.
0 commit comments