[Experimental] React-like library for Golang in WASM
- Virtual DOM and HTML DSL with function calls.
- CSS in Go like Emotion JS did.
Fragment&&Portalsupports.- Component support as
interface { Render(ctx context.Context, childen ...interface{}) interface{}}. - Basic hooks support
UseState,UseEffect,UseMemo,UseRefUseContextnot needed in Go, thecontext.Contextwill pass into Component
- Request HTTP in web worker by XHR
- Compiled to wasm
- bundle size is so big, but could be compressed by
gzip/brotli(brotli is better)
- bundle size is so big, but could be compressed by