
Security News
White House Authorizes Private Companies to Conduct Offensive Cyber Operations
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.
@tmonier/effract
Advanced tools
React components written as Effect programs. yield* services and React hooks in one render pass; run the same component anywhere.
Write React components as Effect programs. The same component — and the same mount — runs in a SPA,
during SSR, or as a React Server Component. One package, one import; the client/server split is chosen
by the bundler, never by you.
Docs & guide → effract.tmonier.com
import { mount, rec, hook } from '@tmonier/effract';
import { createRoot } from 'react-dom/client';
import { useState } from 'react';
// Panel is a PLAIN React component — an ordinary function, used as JSX, left untouched
// Dashboard is a REC — it reaches for a service, so it's written with `rec(...)`
const Dashboard = rec(function* () {
const stats = yield* Stats; // an Effect service
const [tab, setTab] = yield* hook(useState('overview')); // a real React hook
return <Panel tab={tab} total={stats.total} onTab={setTab} />;
});
// wire the runtime in once at the boundary — `mount` returns a ReactNode
createRoot(document.getElementById('root')!).render(mount(AppLive, Dashboard));
effract is incremental, not a rewrite. Plain React components stay exactly as they are (ordinary
<Component /> JSX). You write a REC with rec(...) only where a component reaches for the runtime,
and place one by yield*-ing it: {yield* Dashboard}, or {yield* Dashboard.with({ ... })} with props.
rec / view — hook-capable and resolve-up-front RECs. A REC is not a JSX element; place it
with {yield* Rec} inside another component's JSX.hook — lift a React hook into the yield* channel.mount(layer, RootRec) — the one boundary, client and server. Builds the Effect runtime once and
verifies at compile time that the layer provides every service the tree needs. In a React Server
Component graph the bundler's react-server condition gives it a server implementation (renders on the
server, no client JS); everywhere else it renders interactively. Same import in every file.atom, observe, <Observe>, useAtom — the signals bridge (client).See the project README and ADR 0001.
MIT © Tmonier
FAQs
React components written as Effect programs. yield* services and React hooks in one render pass; run the same component anywhere.
The npm package @tmonier/effract receives a total of 34 weekly downloads. As such, @tmonier/effract popularity was classified as not popular.
We found that @tmonier/effract demonstrated a healthy version release cadence and project activity because the last version was released less than a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A new federal program will let vetted U.S. cybersecurity firms help investigate and disrupt foreign cybercrime groups under government direction.

Research
/Security News
The campaign amassed more than 75,000 installs by targeting Russian-speaking users seeking access to blocked services.

Company News
Open source maintainers are under more pressure than ever. We're raising our open source program from the Team plan to the Business plan, free.