Composable, effect-based UI framework built on Effect.ts
Experimental — work in progress. The API is unstable and subject to change.
Effect
tag
, text
, children
pnpm install @vasilvelikov/effective-ui
import { dom, runtime } from "@vasilvelikov/effective-ui";
const App = dom.tag(
"div",
dom.children(
dom.tag("h1", dom.children(dom.text("Hello from effective-ui"))),
),
);
Effect.runPromise(runtime.mount(App, "#root"));
For more information check out the docs
This repo includes examples that you can run locally.
pnpm install
pnpm run example counter
Then open http://localhost:5173 in your browser.
src/ → the core UI framework
examples/ → runnable examples
Want to contribute? See the Contributing Guide.
See CHANGELOG.md for release history.