
Description
Use when building or debugging React interfaces in Meteor 3: meteor create --react, createRoot, JSX or TSX entry points, Rspack React detection, Fast Refresh, react-meteor-data, useTracker, useSubscribe, useFind, withTracker, Suspense, and Tracker.withComputation. Triggers on isLoading being treated as a boolean, useFind receiving fetch(), stale closure inputs, duplicate tracker side effects, unstable Suspense keys, lost reactivity after await, state reset after refresh, or React tests leaking computations. Use this skill when the user asks about a React skeleton, React-specific rspack.config rules, reactive data hooks, or classic versus Suspense integration. Route general bundler configuration to meteor-modern-build-stack and Meteor 2 upgrades to migrate-to-meteor-3.
SKILL.md
React interfaces for Meteor 3
React owns component rendering and local UI state. Meteor owns startup, Tracker reactivity, Minimongo, subscriptions, methods, and the build handoff. Keep those boundaries visible: components consume authorized client data and invoke methods, while publications and methods remain the server authority.
Decision flow
- For a new JavaScript app, run
meteor create --react <name>; React is also the default skeleton. For TypeScript and TSX, runmeteor create --typescript <name>. - Inspect
package.json,.meteor/packages,.meteor/versions, the client entry, andrspack.config.*. Skeletons andreact-meteor-dataversions can change independently of this skill. - Mount one React root from
Meteor.startupwithcreateRoot. - Pick one
react-meteor-datasurface for a component:- Classic hooks for explicit loading UI and synchronous Minimongo reads.
- Suspense hooks only when an upstream Suspense fallback and rejection boundary already own the pending and error states.
- Use
useSubscribefor readiness,useFindfor reactive lists with stable document references, anduseTrackerfor other Tracker values. - Keep React-specific Rspack rules here. Route aliases, loaders, code splitting, cache, output, or migration work to the build skills.
- Test UI behavior in a browser-backed client suite and always unmount the rendered root so Tracker computations and subscriptions can stop.
Current scaffold
meteor create --react my-app
cd my-app
meteor
Current Meteor 3.4+ scaffolds use Rspack and react-meteor-data. Inspect
.meteor/versions: Meteor 3 requires 3.0.0+, these examples target 4.0.1, and
references/react-meteor-data.md records feature floors.
import { Meteor } from "meteor/meteor";
import { createRoot } from "react-dom/client";
import { App } from "/imports/ui/App";
import "/imports/ui/styles.css";
Meteor.startup(() => {
const container = document.getElementById("react-target");
if (!container) throw new Error("Missing #react-target");
createRoot(container).render(<App />);
});
TypeScript uses client/main.tsx, a tsconfig.json, and usually
rspack.config.ts. Meteor discovers that TypeScript config directly.
Reactive data selection
| Need | API | Contract |
|---|---|---|
| Subscription readiness | Classic useSubscribe | Returns an isLoading function. Call it. |
| Reactive list | Classic useFind | Return a cursor, never fetch(). |
| User, count, single document, ReactiveVar | Classic useTracker | Return the reactive value. Avoid arbitrary side effects. |
| Async value with Suspense | Suspense useTracker | Supply a stable key and Promise-producing function. |
| SSR-capable collection query | Suspense useFind | Pass the collection and the find argument tuple. |
| Existing class component | withTracker | Keep it during focused maintenance; plan hooks separately. |
Classic list scaffold:
import { useFind, useSubscribe } from "meteor/react-meteor-data";
import { Tasks } from "/imports/api/tasks";
export function TaskList({ listId }) {
const isLoading = useSubscribe("tasks.byList", listId);
const tasks = useFind(
() => Tasks.find({ listId }, { sort: { createdAt: -1 } }),
[listId],
);
if (isLoading()) return <p>Loading...</p>;
if (tasks.length === 0) return <p>No tasks.</p>;
return <ul>{tasks.map((task) => <li key={task._id}>{task.title}</li>)}</ul>;
}
useFind owns cursor observation and updates only changed document references.
Use useTracker when a transformed aggregate is clearer. Read
references/react-meteor-data.md before tuning dependencies or skipUpdate.
Suspense and async reactivity
Suspense imports change signatures; they are not drop-in replacements:
import { Suspense } from "react";
import { useFind, useSubscribe } from "meteor/react-meteor-data/suspense";
import { Tasks } from "/imports/api/tasks";
function TaskList({ listId }) {
useSubscribe("tasks.byList", listId);
const tasks = useFind(Tasks, [
{ listId },
{ sort: { createdAt: -1 } },
], [listId]);
return <ul>{tasks.map((task) => <li key={task._id}>{task.title}</li>)}</ul>;
}
export function TaskScreen({ listId }) {
return (
<AppErrorBoundary>
<Suspense fallback={<p>Loading...</p>}>
<TaskList listId={listId} />
</Suspense>
</AppErrorBoundary>
);
}
Treat Suspense useSubscribe as a suspension-only call. In the currently
audited package, its declared return type and runtime value disagree, so do not
consume the return. Read references/suspense-and-async.md for stable keys,
rejections, SSR, and Tracker.withComputation after await.
Build and refresh ownership
Rspack detects React from the app's npm dependencies, enables JSX or TSX SWC parsing, and installs and injects React Refresh for client development. A normal React Rspack app does not add the refresh plugin manually.
Keep rspack.config.* minimal. The generated JavaScript skeleton demonstrates
an optional SVGR rule; the TypeScript skeleton demonstrates type checking.
Compose custom rules through defineConfig from @meteorjs/rspack without
replacing Meteor's SWC defaults.
| Request | Owner |
|---|---|
| React detection, JSX or TSX, React Refresh boundary | This skill |
General rspack.config helpers, SWC, aliases, cache, chunks | meteor-modern-build-stack |
| Convert an existing app or legacy build plugin to Rspack | migrate-to-rspack |
Meteor-bundler HMR or custom module.hot lifecycle | Build skill, then this skill for React symptoms |
If edits reload the page or reset component state, first determine which
bundler compiled the module. In a Rspack client graph, inspect React Refresh
boundaries and avoid a second react-fast-refresh stack. In a Meteor-bundler
graph, verify hot-module-replacement and the bundled React Fast Refresh
integration. See references/build-refresh-and-testing.md.
Mutations and tests
Call Meteor.callAsync from event handlers, model pending and rejection in
React state, and leave validation and authorization inside the method. Do not
write sensitive collections directly from a component.
For tests, separate a presentational component that accepts data as props from the hook-owning container. Unit-test the former with the project's existing React test library. Test the latter in a browser client with controlled Minimongo or a real publication. Assert rendered behavior, not the number of reactive-function calls, because React can discard work and invoke initial render logic more than once.
Anti-patterns
- Treat classic
isLoadingas a boolean. It is a function and must be called. - Pass
Tasks.find().fetch()touseFind. Return the cursor. - Put a subscription inside a
useFindfactory. Subscribe separately. - Call React state setters, methods, analytics, or arbitrary effects inside a
useTrackerreactive function. - Force every classic component onto Suspense. Both surfaces remain useful.
- Reuse a generic Suspense key for unrelated mounted computations.
- Read a Tracker source only after
awaitwithout restoring the computation. - Add
@rspack/plugin-react-refreshto project config when Meteor already injected it. - Replace all Rspack SWC options to add one React transform. Extend them.
- Mock away all Meteor data behavior in a component integration test.
Authoritative resources
- Meteor React tutorial
react-meteor-datadocumentationmeteor/react-packagessource and changelog- Meteor Rspack integration
- React
createRoot - React Suspense
references/react-meteor-data.mdreferences/suspense-and-async.mdreferences/build-refresh-and-testing.mdreferences/eval-cases.md
More skills from the agent-skills repository
View all 14 skillsmeteor-accounts
implement authentication in Meteor apps
Aug 28AuthAuthenticationMeteorOAuthmeteor-blaze
build and debug Meteor Blaze interfaces
Aug 28FrontendMeteorWeb Developmentmeteor-community-packages
manage Meteor community packages
Aug 28EngineeringMeteormeteor-debugging
diagnose failures in Meteor 3 applications
Aug 28DebuggingMeteorWebSocketsmeteor-deployment
deploy Meteor 3 applications
Aug 28DeploymentDockerKubernetesMeteormeteor-methods
author and debug Meteor methods
Aug 28API DevelopmentBackendMeteor
More from Meteor
View publishermeteor-modern-build-stack
configure Meteor 3 modern build stacks
agent-skills
Aug 28BuildMeteorPerformancemeteor-mongo-minimongo
author and debug Meteor MongoDB queries
agent-skills
Aug 28DatabaseDebuggingMeteorMongoDBmeteor-pubsub
author and debug Meteor publications
agent-skills
Aug 28BackendMeteorReal-timemeteor-security
audit and harden Meteor 3 applications
agent-skills
Aug 28AuthCode AnalysisMeteorSecuritymeteor-testing
write and repair Meteor test harnesses
agent-skills
Aug 28MeteorQATesting