-
Wasmer allows to run GUI WASI modules using Devices I/O. Is it possible to run them in Hermit, possibly using a cross-platform GUI like cosmogfx? |
Beta Was this translation helpful? Give feedback.
Answered by
G4Vi
Dec 3, 2023
Replies: 1 comment 2 replies
-
In hermit, the only interaction the WASM has with the host right now is through WASI. You could potentially map a framebuffer device (for example |
Beta Was this translation helpful? Give feedback.
2 replies
Answer selected by
niutech
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
In hermit, the only interaction the WASM has with the host right now is through WASI. You could potentially map a framebuffer device (for example
/dev/fb0
) in and write to the framebuffer. If an X client can be built to WASM, it could probably be exposed to the host similar to cosmogfx. However, sharingNET
hasn't been implemented in hermit yet.