[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-meteor-meteor-react":3,"mdc-1gugwr-key":39,"related-org-meteor-meteor-react":2778,"related-repo-meteor-meteor-react":2939},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":23,"repoUrl":24,"updatedAt":25,"license":26,"forks":27,"topics":28,"repo":34,"sourceUrl":37,"mdContent":38},"meteor-react","build and debug Meteor React interfaces","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.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},"meteor","Meteor","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmeteor.png",[12,16,17,20],{"name":13,"slug":14,"type":15},"React","react","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"Web Development","web-development",{"name":21,"slug":22,"type":15},"Frontend","frontend",4,"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills","2026-08-28T15:09:37.193947","MIT",0,[29,30,31,32,8,33],"agent-skills","ai-agents","claude-code","codex","meteorjs",{"repoUrl":24,"stars":23,"forks":27,"topics":35,"description":36},[29,30,31,32,8,33],"Meteor-maintained Agent Skills for building, migrating, testing, securing, and deploying Meteor 3 applications.","https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills\u002Ftree\u002FHEAD\u002Fskills\u002Fmeteor-react","---\nname: meteor-react\ndescription: >\n  Use when building or debugging React interfaces in Meteor 3: meteor create\n  --react, createRoot, JSX or TSX entry points, Rspack React detection, Fast\n  Refresh, react-meteor-data, useTracker, useSubscribe, useFind, withTracker,\n  Suspense, and Tracker.withComputation. Triggers on isLoading being treated as\n  a boolean, useFind receiving fetch(), stale closure inputs, duplicate tracker\n  side effects, unstable Suspense keys, lost reactivity after await, state reset\n  after refresh, or React tests leaking computations. Use this skill when the\n  user asks about a React skeleton, React-specific rspack.config rules, reactive\n  data hooks, or classic versus Suspense integration. Route general bundler\n  configuration to meteor-modern-build-stack and Meteor 2 upgrades to\n  migrate-to-meteor-3.\nmetadata:\n  author: meteor\n  kind: knowledge\n  meteor: \">=3.0\"\n  area: data\n  tagline: \"Build and debug Meteor 3 React interfaces (Rspack scaffold, reactive data hooks, Suspense, Fast Refresh, and testing).\"\n  bundle: [\"react\"]\n  docs_synced_at: \"2026-08-25\"\nlicense: MIT\n---\n\n# React interfaces for Meteor 3\n\nReact owns component rendering and local UI state. Meteor owns startup,\nTracker reactivity, Minimongo, subscriptions, methods, and the build handoff.\nKeep those boundaries visible: components consume authorized client data and\ninvoke methods, while publications and methods remain the server authority.\n\n## Decision flow\n\n1. For a new JavaScript app, run `meteor create --react \u003Cname>`; React is also\n   the default skeleton. For TypeScript and TSX, run\n   `meteor create --typescript \u003Cname>`.\n2. Inspect `package.json`, `.meteor\u002Fpackages`, `.meteor\u002Fversions`, the client\n   entry, and `rspack.config.*`. Skeletons and `react-meteor-data` versions can\n   change independently of this skill.\n3. Mount one React root from `Meteor.startup` with `createRoot`.\n4. Pick one `react-meteor-data` surface for a component:\n   - Classic hooks for explicit loading UI and synchronous Minimongo reads.\n   - Suspense hooks only when an upstream Suspense fallback and rejection\n     boundary already own the pending and error states.\n5. Use `useSubscribe` for readiness, `useFind` for reactive lists with stable\n   document references, and `useTracker` for other Tracker values.\n6. Keep React-specific Rspack rules here. Route aliases, loaders, code\n   splitting, cache, output, or migration work to the build skills.\n7. Test UI behavior in a browser-backed client suite and always unmount the\n   rendered root so Tracker computations and subscriptions can stop.\n\n## Current scaffold\n\n```bash\nmeteor create --react my-app\ncd my-app\nmeteor\n```\n\nCurrent Meteor 3.4+ scaffolds use Rspack and `react-meteor-data`. Inspect\n`.meteor\u002Fversions`: Meteor 3 requires 3.0.0+, these examples target 4.0.1, and\n`references\u002Freact-meteor-data.md` records feature floors.\n\n```jsx\nimport { Meteor } from \"meteor\u002Fmeteor\";\nimport { createRoot } from \"react-dom\u002Fclient\";\nimport { App } from \"\u002Fimports\u002Fui\u002FApp\";\nimport \"\u002Fimports\u002Fui\u002Fstyles.css\";\n\nMeteor.startup(() => {\n  const container = document.getElementById(\"react-target\");\n  if (!container) throw new Error(\"Missing #react-target\");\n  createRoot(container).render(\u003CApp \u002F>);\n});\n```\n\nTypeScript uses `client\u002Fmain.tsx`, a `tsconfig.json`, and usually\n`rspack.config.ts`. Meteor discovers that TypeScript config directly.\n\n## Reactive data selection\n\n| Need | API | Contract |\n|------|-----|----------|\n| Subscription readiness | Classic `useSubscribe` | Returns an `isLoading` function. Call it. |\n| Reactive list | Classic `useFind` | Return a cursor, never `fetch()`. |\n| User, count, single document, ReactiveVar | Classic `useTracker` | Return the reactive value. Avoid arbitrary side effects. |\n| Async value with Suspense | Suspense `useTracker` | Supply a stable key and Promise-producing function. |\n| SSR-capable collection query | Suspense `useFind` | Pass the collection and the `find` argument tuple. |\n| Existing class component | `withTracker` | Keep it during focused maintenance; plan hooks separately. |\n\nClassic list scaffold:\n\n```jsx\nimport { useFind, useSubscribe } from \"meteor\u002Freact-meteor-data\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\n\nexport function TaskList({ listId }) {\n  const isLoading = useSubscribe(\"tasks.byList\", listId);\n  const tasks = useFind(\n    () => Tasks.find({ listId }, { sort: { createdAt: -1 } }),\n    [listId],\n  );\n\n  if (isLoading()) return \u003Cp>Loading...\u003C\u002Fp>;\n  if (tasks.length === 0) return \u003Cp>No tasks.\u003C\u002Fp>;\n  return \u003Cul>{tasks.map((task) => \u003Cli key={task._id}>{task.title}\u003C\u002Fli>)}\u003C\u002Ful>;\n}\n```\n\n`useFind` owns cursor observation and updates only changed document references.\nUse `useTracker` when a transformed aggregate is clearer. Read\n`references\u002Freact-meteor-data.md` before tuning dependencies or `skipUpdate`.\n\n## Suspense and async reactivity\n\nSuspense imports change signatures; they are not drop-in replacements:\n\n```jsx\nimport { Suspense } from \"react\";\nimport { useFind, useSubscribe } from \"meteor\u002Freact-meteor-data\u002Fsuspense\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\n\nfunction TaskList({ listId }) {\n  useSubscribe(\"tasks.byList\", listId);\n  const tasks = useFind(Tasks, [\n    { listId },\n    { sort: { createdAt: -1 } },\n  ], [listId]);\n  return \u003Cul>{tasks.map((task) => \u003Cli key={task._id}>{task.title}\u003C\u002Fli>)}\u003C\u002Ful>;\n}\n\nexport function TaskScreen({ listId }) {\n  return (\n    \u003CAppErrorBoundary>\n      \u003CSuspense fallback={\u003Cp>Loading...\u003C\u002Fp>}>\n        \u003CTaskList listId={listId} \u002F>\n      \u003C\u002FSuspense>\n    \u003C\u002FAppErrorBoundary>\n  );\n}\n```\n\nTreat Suspense `useSubscribe` as a suspension-only call. In the currently\naudited package, its declared return type and runtime value disagree, so do not\nconsume the return. Read `references\u002Fsuspense-and-async.md` for stable keys,\nrejections, SSR, and `Tracker.withComputation` after `await`.\n\n## Build and refresh ownership\n\nRspack detects React from the app's npm dependencies, enables JSX or TSX SWC\nparsing, and installs and injects React Refresh for client development. A\nnormal React Rspack app does not add the refresh plugin manually.\n\nKeep `rspack.config.*` minimal. The generated JavaScript skeleton demonstrates\nan optional SVGR rule; the TypeScript skeleton demonstrates type checking.\nCompose custom rules through `defineConfig` from `@meteorjs\u002Frspack` without\nreplacing Meteor's SWC defaults.\n\n| Request | Owner |\n|---------|-------|\n| React detection, JSX or TSX, React Refresh boundary | This skill |\n| General `rspack.config` helpers, SWC, aliases, cache, chunks | `meteor-modern-build-stack` |\n| Convert an existing app or legacy build plugin to Rspack | `migrate-to-rspack` |\n| Meteor-bundler HMR or custom `module.hot` lifecycle | Build skill, then this skill for React symptoms |\n\nIf edits reload the page or reset component state, first determine which\nbundler compiled the module. In a Rspack client graph, inspect React Refresh\nboundaries and avoid a second `react-fast-refresh` stack. In a Meteor-bundler\ngraph, verify `hot-module-replacement` and the bundled React Fast Refresh\nintegration. See `references\u002Fbuild-refresh-and-testing.md`.\n\n## Mutations and tests\n\nCall `Meteor.callAsync` from event handlers, model pending and rejection in\nReact state, and leave validation and authorization inside the method. Do not\nwrite sensitive collections directly from a component.\n\nFor tests, separate a presentational component that accepts data as props from\nthe hook-owning container. Unit-test the former with the project's existing\nReact test library. Test the latter in a browser client with controlled\nMinimongo or a real publication. Assert rendered behavior, not the number of\nreactive-function calls, because React can discard work and invoke initial\nrender logic more than once.\n\n## Anti-patterns\n\n- Treat classic `isLoading` as a boolean. It is a function and must be called.\n- Pass `Tasks.find().fetch()` to `useFind`. Return the cursor.\n- Put a subscription inside a `useFind` factory. Subscribe separately.\n- Call React state setters, methods, analytics, or arbitrary effects inside a\n  `useTracker` reactive function.\n- Force every classic component onto Suspense. Both surfaces remain useful.\n- Reuse a generic Suspense key for unrelated mounted computations.\n- Read a Tracker source only after `await` without restoring the computation.\n- Add `@rspack\u002Fplugin-react-refresh` to project config when Meteor already\n  injected it.\n- Replace all Rspack SWC options to add one React transform. Extend them.\n- Mock away all Meteor data behavior in a component integration test.\n\n## Authoritative resources\n\n- [Meteor React tutorial](https:\u002F\u002Fdocs.meteor.com\u002Ftutorials\u002Freact\u002F)\n- [`react-meteor-data` documentation](https:\u002F\u002Fdocs.meteor.com\u002Fpackages\u002Freact-meteor-data.html)\n- [`meteor\u002Freact-packages` source and changelog](https:\u002F\u002Fgithub.com\u002Fmeteor\u002Freact-packages\u002Ftree\u002Fmaster\u002Fpackages\u002Freact-meteor-data)\n- [Meteor Rspack integration](https:\u002F\u002Fdocs.meteor.com\u002Fabout\u002Fmodern-build-stack\u002Frspack-bundler-integration.html)\n- [React `createRoot`](https:\u002F\u002Freact.dev\u002Freference\u002Freact-dom\u002Fclient\u002FcreateRoot)\n- [React Suspense](https:\u002F\u002Freact.dev\u002Freference\u002Freact\u002FSuspense)\n- `references\u002Freact-meteor-data.md`\n- `references\u002Fsuspense-and-async.md`\n- `references\u002Fbuild-refresh-and-testing.md`\n- `references\u002Feval-cases.md`\n",{"data":40,"body":48},{"name":4,"description":6,"metadata":41,"license":26},{"author":8,"kind":42,"meteor":43,"area":44,"tagline":45,"bundle":46,"docs_synced_at":47},"knowledge",">=3.0","data","Build and debug Meteor 3 React interfaces (Rspack scaffold, reactive data hooks, Suspense, Fast Refresh, and testing).",[14],"2026-08-25",{"type":49,"children":50},"root",[51,60,66,73,229,235,296,323,740,769,775,965,970,1605,1636,1642,1647,2318,2353,2359,2364,2392,2490,2518,2524,2537,2542,2548,2652,2658,2772],{"type":52,"tag":53,"props":54,"children":56},"element","h1",{"id":55},"react-interfaces-for-meteor-3",[57],{"type":58,"value":59},"text","React interfaces for Meteor 3",{"type":52,"tag":61,"props":62,"children":63},"p",{},[64],{"type":58,"value":65},"React owns component rendering and local UI state. Meteor owns startup,\nTracker reactivity, Minimongo, subscriptions, methods, and the build handoff.\nKeep those boundaries visible: components consume authorized client data and\ninvoke methods, while publications and methods remain the server authority.",{"type":52,"tag":67,"props":68,"children":70},"h2",{"id":69},"decision-flow",[71],{"type":58,"value":72},"Decision flow",{"type":52,"tag":74,"props":75,"children":76},"ol",{},[77,100,144,164,190,219,224],{"type":52,"tag":78,"props":79,"children":80},"li",{},[81,83,90,92,98],{"type":58,"value":82},"For a new JavaScript app, run ",{"type":52,"tag":84,"props":85,"children":87},"code",{"className":86},[],[88],{"type":58,"value":89},"meteor create --react \u003Cname>",{"type":58,"value":91},"; React is also\nthe default skeleton. For TypeScript and TSX, run\n",{"type":52,"tag":84,"props":93,"children":95},{"className":94},[],[96],{"type":58,"value":97},"meteor create --typescript \u003Cname>",{"type":58,"value":99},".",{"type":52,"tag":78,"props":101,"children":102},{},[103,105,111,113,119,120,126,128,134,136,142],{"type":58,"value":104},"Inspect ",{"type":52,"tag":84,"props":106,"children":108},{"className":107},[],[109],{"type":58,"value":110},"package.json",{"type":58,"value":112},", ",{"type":52,"tag":84,"props":114,"children":116},{"className":115},[],[117],{"type":58,"value":118},".meteor\u002Fpackages",{"type":58,"value":112},{"type":52,"tag":84,"props":121,"children":123},{"className":122},[],[124],{"type":58,"value":125},".meteor\u002Fversions",{"type":58,"value":127},", the client\nentry, and ",{"type":52,"tag":84,"props":129,"children":131},{"className":130},[],[132],{"type":58,"value":133},"rspack.config.*",{"type":58,"value":135},". Skeletons and ",{"type":52,"tag":84,"props":137,"children":139},{"className":138},[],[140],{"type":58,"value":141},"react-meteor-data",{"type":58,"value":143}," versions can\nchange independently of this skill.",{"type":52,"tag":78,"props":145,"children":146},{},[147,149,155,157,163],{"type":58,"value":148},"Mount one React root from ",{"type":52,"tag":84,"props":150,"children":152},{"className":151},[],[153],{"type":58,"value":154},"Meteor.startup",{"type":58,"value":156}," with ",{"type":52,"tag":84,"props":158,"children":160},{"className":159},[],[161],{"type":58,"value":162},"createRoot",{"type":58,"value":99},{"type":52,"tag":78,"props":165,"children":166},{},[167,169,174,176],{"type":58,"value":168},"Pick one ",{"type":52,"tag":84,"props":170,"children":172},{"className":171},[],[173],{"type":58,"value":141},{"type":58,"value":175}," surface for a component:\n",{"type":52,"tag":177,"props":178,"children":179},"ul",{},[180,185],{"type":52,"tag":78,"props":181,"children":182},{},[183],{"type":58,"value":184},"Classic hooks for explicit loading UI and synchronous Minimongo reads.",{"type":52,"tag":78,"props":186,"children":187},{},[188],{"type":58,"value":189},"Suspense hooks only when an upstream Suspense fallback and rejection\nboundary already own the pending and error states.",{"type":52,"tag":78,"props":191,"children":192},{},[193,195,201,203,209,211,217],{"type":58,"value":194},"Use ",{"type":52,"tag":84,"props":196,"children":198},{"className":197},[],[199],{"type":58,"value":200},"useSubscribe",{"type":58,"value":202}," for readiness, ",{"type":52,"tag":84,"props":204,"children":206},{"className":205},[],[207],{"type":58,"value":208},"useFind",{"type":58,"value":210}," for reactive lists with stable\ndocument references, and ",{"type":52,"tag":84,"props":212,"children":214},{"className":213},[],[215],{"type":58,"value":216},"useTracker",{"type":58,"value":218}," for other Tracker values.",{"type":52,"tag":78,"props":220,"children":221},{},[222],{"type":58,"value":223},"Keep React-specific Rspack rules here. Route aliases, loaders, code\nsplitting, cache, output, or migration work to the build skills.",{"type":52,"tag":78,"props":225,"children":226},{},[227],{"type":58,"value":228},"Test UI behavior in a browser-backed client suite and always unmount the\nrendered root so Tracker computations and subscriptions can stop.",{"type":52,"tag":67,"props":230,"children":232},{"id":231},"current-scaffold",[233],{"type":58,"value":234},"Current scaffold",{"type":52,"tag":236,"props":237,"children":242},"pre",{"className":238,"code":239,"language":240,"meta":241,"style":241},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","meteor create --react my-app\ncd my-app\nmeteor\n","bash","",[243],{"type":52,"tag":84,"props":244,"children":245},{"__ignoreMap":241},[246,273,287],{"type":52,"tag":247,"props":248,"children":251},"span",{"class":249,"line":250},"line",1,[252,257,263,268],{"type":52,"tag":247,"props":253,"children":255},{"style":254},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[256],{"type":58,"value":8},{"type":52,"tag":247,"props":258,"children":260},{"style":259},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[261],{"type":58,"value":262}," create",{"type":52,"tag":247,"props":264,"children":265},{"style":259},[266],{"type":58,"value":267}," --react",{"type":52,"tag":247,"props":269,"children":270},{"style":259},[271],{"type":58,"value":272}," my-app\n",{"type":52,"tag":247,"props":274,"children":276},{"class":249,"line":275},2,[277,283],{"type":52,"tag":247,"props":278,"children":280},{"style":279},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[281],{"type":58,"value":282},"cd",{"type":52,"tag":247,"props":284,"children":285},{"style":259},[286],{"type":58,"value":272},{"type":52,"tag":247,"props":288,"children":290},{"class":249,"line":289},3,[291],{"type":52,"tag":247,"props":292,"children":293},{"style":254},[294],{"type":58,"value":295},"meteor\n",{"type":52,"tag":61,"props":297,"children":298},{},[299,301,306,308,313,315,321],{"type":58,"value":300},"Current Meteor 3.4+ scaffolds use Rspack and ",{"type":52,"tag":84,"props":302,"children":304},{"className":303},[],[305],{"type":58,"value":141},{"type":58,"value":307},". Inspect\n",{"type":52,"tag":84,"props":309,"children":311},{"className":310},[],[312],{"type":58,"value":125},{"type":58,"value":314},": Meteor 3 requires 3.0.0+, these examples target 4.0.1, and\n",{"type":52,"tag":84,"props":316,"children":318},{"className":317},[],[319],{"type":58,"value":320},"references\u002Freact-meteor-data.md",{"type":58,"value":322}," records feature floors.",{"type":52,"tag":236,"props":324,"children":328},{"className":325,"code":326,"language":327,"meta":241,"style":241},"language-jsx shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { Meteor } from \"meteor\u002Fmeteor\";\nimport { createRoot } from \"react-dom\u002Fclient\";\nimport { App } from \"\u002Fimports\u002Fui\u002FApp\";\nimport \"\u002Fimports\u002Fui\u002Fstyles.css\";\n\nMeteor.startup(() => {\n  const container = document.getElementById(\"react-target\");\n  if (!container) throw new Error(\"Missing #react-target\");\n  createRoot(container).render(\u003CApp \u002F>);\n});\n","jsx",[329],{"type":52,"tag":84,"props":330,"children":331},{"__ignoreMap":241},[332,383,424,465,489,499,537,597,666,723],{"type":52,"tag":247,"props":333,"children":334},{"class":249,"line":250},[335,341,347,353,358,363,368,373,378],{"type":52,"tag":247,"props":336,"children":338},{"style":337},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[339],{"type":58,"value":340},"import",{"type":52,"tag":247,"props":342,"children":344},{"style":343},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[345],{"type":58,"value":346}," {",{"type":52,"tag":247,"props":348,"children":350},{"style":349},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[351],{"type":58,"value":352}," Meteor",{"type":52,"tag":247,"props":354,"children":355},{"style":343},[356],{"type":58,"value":357}," }",{"type":52,"tag":247,"props":359,"children":360},{"style":337},[361],{"type":58,"value":362}," from",{"type":52,"tag":247,"props":364,"children":365},{"style":343},[366],{"type":58,"value":367}," \"",{"type":52,"tag":247,"props":369,"children":370},{"style":259},[371],{"type":58,"value":372},"meteor\u002Fmeteor",{"type":52,"tag":247,"props":374,"children":375},{"style":343},[376],{"type":58,"value":377},"\"",{"type":52,"tag":247,"props":379,"children":380},{"style":343},[381],{"type":58,"value":382},";\n",{"type":52,"tag":247,"props":384,"children":385},{"class":249,"line":275},[386,390,394,399,403,407,411,416,420],{"type":52,"tag":247,"props":387,"children":388},{"style":337},[389],{"type":58,"value":340},{"type":52,"tag":247,"props":391,"children":392},{"style":343},[393],{"type":58,"value":346},{"type":52,"tag":247,"props":395,"children":396},{"style":349},[397],{"type":58,"value":398}," createRoot",{"type":52,"tag":247,"props":400,"children":401},{"style":343},[402],{"type":58,"value":357},{"type":52,"tag":247,"props":404,"children":405},{"style":337},[406],{"type":58,"value":362},{"type":52,"tag":247,"props":408,"children":409},{"style":343},[410],{"type":58,"value":367},{"type":52,"tag":247,"props":412,"children":413},{"style":259},[414],{"type":58,"value":415},"react-dom\u002Fclient",{"type":52,"tag":247,"props":417,"children":418},{"style":343},[419],{"type":58,"value":377},{"type":52,"tag":247,"props":421,"children":422},{"style":343},[423],{"type":58,"value":382},{"type":52,"tag":247,"props":425,"children":426},{"class":249,"line":289},[427,431,435,440,444,448,452,457,461],{"type":52,"tag":247,"props":428,"children":429},{"style":337},[430],{"type":58,"value":340},{"type":52,"tag":247,"props":432,"children":433},{"style":343},[434],{"type":58,"value":346},{"type":52,"tag":247,"props":436,"children":437},{"style":349},[438],{"type":58,"value":439}," App",{"type":52,"tag":247,"props":441,"children":442},{"style":343},[443],{"type":58,"value":357},{"type":52,"tag":247,"props":445,"children":446},{"style":337},[447],{"type":58,"value":362},{"type":52,"tag":247,"props":449,"children":450},{"style":343},[451],{"type":58,"value":367},{"type":52,"tag":247,"props":453,"children":454},{"style":259},[455],{"type":58,"value":456},"\u002Fimports\u002Fui\u002FApp",{"type":52,"tag":247,"props":458,"children":459},{"style":343},[460],{"type":58,"value":377},{"type":52,"tag":247,"props":462,"children":463},{"style":343},[464],{"type":58,"value":382},{"type":52,"tag":247,"props":466,"children":467},{"class":249,"line":23},[468,472,476,481,485],{"type":52,"tag":247,"props":469,"children":470},{"style":337},[471],{"type":58,"value":340},{"type":52,"tag":247,"props":473,"children":474},{"style":343},[475],{"type":58,"value":367},{"type":52,"tag":247,"props":477,"children":478},{"style":259},[479],{"type":58,"value":480},"\u002Fimports\u002Fui\u002Fstyles.css",{"type":52,"tag":247,"props":482,"children":483},{"style":343},[484],{"type":58,"value":377},{"type":52,"tag":247,"props":486,"children":487},{"style":343},[488],{"type":58,"value":382},{"type":52,"tag":247,"props":490,"children":492},{"class":249,"line":491},5,[493],{"type":52,"tag":247,"props":494,"children":496},{"emptyLinePlaceholder":495},true,[497],{"type":58,"value":498},"\n",{"type":52,"tag":247,"props":500,"children":502},{"class":249,"line":501},6,[503,507,511,516,521,526,532],{"type":52,"tag":247,"props":504,"children":505},{"style":349},[506],{"type":58,"value":9},{"type":52,"tag":247,"props":508,"children":509},{"style":343},[510],{"type":58,"value":99},{"type":52,"tag":247,"props":512,"children":513},{"style":279},[514],{"type":58,"value":515},"startup",{"type":52,"tag":247,"props":517,"children":518},{"style":349},[519],{"type":58,"value":520},"(",{"type":52,"tag":247,"props":522,"children":523},{"style":343},[524],{"type":58,"value":525},"()",{"type":52,"tag":247,"props":527,"children":529},{"style":528},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[530],{"type":58,"value":531}," =>",{"type":52,"tag":247,"props":533,"children":534},{"style":343},[535],{"type":58,"value":536}," {\n",{"type":52,"tag":247,"props":538,"children":540},{"class":249,"line":539},7,[541,546,551,556,561,565,570,575,579,584,588,593],{"type":52,"tag":247,"props":542,"children":543},{"style":528},[544],{"type":58,"value":545},"  const",{"type":52,"tag":247,"props":547,"children":548},{"style":349},[549],{"type":58,"value":550}," container",{"type":52,"tag":247,"props":552,"children":553},{"style":343},[554],{"type":58,"value":555}," =",{"type":52,"tag":247,"props":557,"children":558},{"style":349},[559],{"type":58,"value":560}," document",{"type":52,"tag":247,"props":562,"children":563},{"style":343},[564],{"type":58,"value":99},{"type":52,"tag":247,"props":566,"children":567},{"style":279},[568],{"type":58,"value":569},"getElementById",{"type":52,"tag":247,"props":571,"children":573},{"style":572},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[574],{"type":58,"value":520},{"type":52,"tag":247,"props":576,"children":577},{"style":343},[578],{"type":58,"value":377},{"type":52,"tag":247,"props":580,"children":581},{"style":259},[582],{"type":58,"value":583},"react-target",{"type":52,"tag":247,"props":585,"children":586},{"style":343},[587],{"type":58,"value":377},{"type":52,"tag":247,"props":589,"children":590},{"style":572},[591],{"type":58,"value":592},")",{"type":52,"tag":247,"props":594,"children":595},{"style":343},[596],{"type":58,"value":382},{"type":52,"tag":247,"props":598,"children":600},{"class":249,"line":599},8,[601,606,611,616,621,626,631,636,641,645,649,654,658,662],{"type":52,"tag":247,"props":602,"children":603},{"style":337},[604],{"type":58,"value":605},"  if",{"type":52,"tag":247,"props":607,"children":608},{"style":572},[609],{"type":58,"value":610}," (",{"type":52,"tag":247,"props":612,"children":613},{"style":343},[614],{"type":58,"value":615},"!",{"type":52,"tag":247,"props":617,"children":618},{"style":349},[619],{"type":58,"value":620},"container",{"type":52,"tag":247,"props":622,"children":623},{"style":572},[624],{"type":58,"value":625},") ",{"type":52,"tag":247,"props":627,"children":628},{"style":337},[629],{"type":58,"value":630},"throw",{"type":52,"tag":247,"props":632,"children":633},{"style":343},[634],{"type":58,"value":635}," new",{"type":52,"tag":247,"props":637,"children":638},{"style":279},[639],{"type":58,"value":640}," Error",{"type":52,"tag":247,"props":642,"children":643},{"style":572},[644],{"type":58,"value":520},{"type":52,"tag":247,"props":646,"children":647},{"style":343},[648],{"type":58,"value":377},{"type":52,"tag":247,"props":650,"children":651},{"style":259},[652],{"type":58,"value":653},"Missing #react-target",{"type":52,"tag":247,"props":655,"children":656},{"style":343},[657],{"type":58,"value":377},{"type":52,"tag":247,"props":659,"children":660},{"style":572},[661],{"type":58,"value":592},{"type":52,"tag":247,"props":663,"children":664},{"style":343},[665],{"type":58,"value":382},{"type":52,"tag":247,"props":667,"children":669},{"class":249,"line":668},9,[670,675,679,683,687,691,696,700,705,710,715,719],{"type":52,"tag":247,"props":671,"children":672},{"style":279},[673],{"type":58,"value":674},"  createRoot",{"type":52,"tag":247,"props":676,"children":677},{"style":572},[678],{"type":58,"value":520},{"type":52,"tag":247,"props":680,"children":681},{"style":349},[682],{"type":58,"value":620},{"type":52,"tag":247,"props":684,"children":685},{"style":572},[686],{"type":58,"value":592},{"type":52,"tag":247,"props":688,"children":689},{"style":343},[690],{"type":58,"value":99},{"type":52,"tag":247,"props":692,"children":693},{"style":279},[694],{"type":58,"value":695},"render",{"type":52,"tag":247,"props":697,"children":698},{"style":572},[699],{"type":58,"value":520},{"type":52,"tag":247,"props":701,"children":702},{"style":343},[703],{"type":58,"value":704},"\u003C",{"type":52,"tag":247,"props":706,"children":707},{"style":254},[708],{"type":58,"value":709},"App",{"type":52,"tag":247,"props":711,"children":712},{"style":343},[713],{"type":58,"value":714}," \u002F>",{"type":52,"tag":247,"props":716,"children":717},{"style":572},[718],{"type":58,"value":592},{"type":52,"tag":247,"props":720,"children":721},{"style":343},[722],{"type":58,"value":382},{"type":52,"tag":247,"props":724,"children":726},{"class":249,"line":725},10,[727,732,736],{"type":52,"tag":247,"props":728,"children":729},{"style":343},[730],{"type":58,"value":731},"}",{"type":52,"tag":247,"props":733,"children":734},{"style":349},[735],{"type":58,"value":592},{"type":52,"tag":247,"props":737,"children":738},{"style":343},[739],{"type":58,"value":382},{"type":52,"tag":61,"props":741,"children":742},{},[743,745,751,753,759,761,767],{"type":58,"value":744},"TypeScript uses ",{"type":52,"tag":84,"props":746,"children":748},{"className":747},[],[749],{"type":58,"value":750},"client\u002Fmain.tsx",{"type":58,"value":752},", a ",{"type":52,"tag":84,"props":754,"children":756},{"className":755},[],[757],{"type":58,"value":758},"tsconfig.json",{"type":58,"value":760},", and usually\n",{"type":52,"tag":84,"props":762,"children":764},{"className":763},[],[765],{"type":58,"value":766},"rspack.config.ts",{"type":58,"value":768},". Meteor discovers that TypeScript config directly.",{"type":52,"tag":67,"props":770,"children":772},{"id":771},"reactive-data-selection",[773],{"type":58,"value":774},"Reactive data selection",{"type":52,"tag":776,"props":777,"children":778},"table",{},[779,803],{"type":52,"tag":780,"props":781,"children":782},"thead",{},[783],{"type":52,"tag":784,"props":785,"children":786},"tr",{},[787,793,798],{"type":52,"tag":788,"props":789,"children":790},"th",{},[791],{"type":58,"value":792},"Need",{"type":52,"tag":788,"props":794,"children":795},{},[796],{"type":58,"value":797},"API",{"type":52,"tag":788,"props":799,"children":800},{},[801],{"type":58,"value":802},"Contract",{"type":52,"tag":804,"props":805,"children":806},"tbody",{},[807,839,868,890,913,943],{"type":52,"tag":784,"props":808,"children":809},{},[810,816,826],{"type":52,"tag":811,"props":812,"children":813},"td",{},[814],{"type":58,"value":815},"Subscription readiness",{"type":52,"tag":811,"props":817,"children":818},{},[819,821],{"type":58,"value":820},"Classic ",{"type":52,"tag":84,"props":822,"children":824},{"className":823},[],[825],{"type":58,"value":200},{"type":52,"tag":811,"props":827,"children":828},{},[829,831,837],{"type":58,"value":830},"Returns an ",{"type":52,"tag":84,"props":832,"children":834},{"className":833},[],[835],{"type":58,"value":836},"isLoading",{"type":58,"value":838}," function. Call it.",{"type":52,"tag":784,"props":840,"children":841},{},[842,847,856],{"type":52,"tag":811,"props":843,"children":844},{},[845],{"type":58,"value":846},"Reactive list",{"type":52,"tag":811,"props":848,"children":849},{},[850,851],{"type":58,"value":820},{"type":52,"tag":84,"props":852,"children":854},{"className":853},[],[855],{"type":58,"value":208},{"type":52,"tag":811,"props":857,"children":858},{},[859,861,867],{"type":58,"value":860},"Return a cursor, never ",{"type":52,"tag":84,"props":862,"children":864},{"className":863},[],[865],{"type":58,"value":866},"fetch()",{"type":58,"value":99},{"type":52,"tag":784,"props":869,"children":870},{},[871,876,885],{"type":52,"tag":811,"props":872,"children":873},{},[874],{"type":58,"value":875},"User, count, single document, ReactiveVar",{"type":52,"tag":811,"props":877,"children":878},{},[879,880],{"type":58,"value":820},{"type":52,"tag":84,"props":881,"children":883},{"className":882},[],[884],{"type":58,"value":216},{"type":52,"tag":811,"props":886,"children":887},{},[888],{"type":58,"value":889},"Return the reactive value. Avoid arbitrary side effects.",{"type":52,"tag":784,"props":891,"children":892},{},[893,898,908],{"type":52,"tag":811,"props":894,"children":895},{},[896],{"type":58,"value":897},"Async value with Suspense",{"type":52,"tag":811,"props":899,"children":900},{},[901,903],{"type":58,"value":902},"Suspense ",{"type":52,"tag":84,"props":904,"children":906},{"className":905},[],[907],{"type":58,"value":216},{"type":52,"tag":811,"props":909,"children":910},{},[911],{"type":58,"value":912},"Supply a stable key and Promise-producing function.",{"type":52,"tag":784,"props":914,"children":915},{},[916,921,930],{"type":52,"tag":811,"props":917,"children":918},{},[919],{"type":58,"value":920},"SSR-capable collection query",{"type":52,"tag":811,"props":922,"children":923},{},[924,925],{"type":58,"value":902},{"type":52,"tag":84,"props":926,"children":928},{"className":927},[],[929],{"type":58,"value":208},{"type":52,"tag":811,"props":931,"children":932},{},[933,935,941],{"type":58,"value":934},"Pass the collection and the ",{"type":52,"tag":84,"props":936,"children":938},{"className":937},[],[939],{"type":58,"value":940},"find",{"type":58,"value":942}," argument tuple.",{"type":52,"tag":784,"props":944,"children":945},{},[946,951,960],{"type":52,"tag":811,"props":947,"children":948},{},[949],{"type":58,"value":950},"Existing class component",{"type":52,"tag":811,"props":952,"children":953},{},[954],{"type":52,"tag":84,"props":955,"children":957},{"className":956},[],[958],{"type":58,"value":959},"withTracker",{"type":52,"tag":811,"props":961,"children":962},{},[963],{"type":58,"value":964},"Keep it during focused maintenance; plan hooks separately.",{"type":52,"tag":61,"props":966,"children":967},{},[968],{"type":58,"value":969},"Classic list scaffold:",{"type":52,"tag":236,"props":971,"children":973},{"className":325,"code":972,"language":327,"meta":241,"style":241},"import { useFind, useSubscribe } from \"meteor\u002Freact-meteor-data\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\n\nexport function TaskList({ listId }) {\n  const isLoading = useSubscribe(\"tasks.byList\", listId);\n  const tasks = useFind(\n    () => Tasks.find({ listId }, { sort: { createdAt: -1 } }),\n    [listId],\n  );\n\n  if (isLoading()) return \u003Cp>Loading...\u003C\u002Fp>;\n  if (tasks.length === 0) return \u003Cp>No tasks.\u003C\u002Fp>;\n  return \u003Cul>{tasks.map((task) => \u003Cli key={task._id}>{task.title}\u003C\u002Fli>)}\u003C\u002Ful>;\n}\n",[974],{"type":52,"tag":84,"props":975,"children":976},{"__ignoreMap":241},[977,1028,1069,1076,1114,1167,1192,1289,1311,1323,1330,1389,1462,1596],{"type":52,"tag":247,"props":978,"children":979},{"class":249,"line":250},[980,984,988,993,998,1003,1007,1011,1015,1020,1024],{"type":52,"tag":247,"props":981,"children":982},{"style":337},[983],{"type":58,"value":340},{"type":52,"tag":247,"props":985,"children":986},{"style":343},[987],{"type":58,"value":346},{"type":52,"tag":247,"props":989,"children":990},{"style":349},[991],{"type":58,"value":992}," useFind",{"type":52,"tag":247,"props":994,"children":995},{"style":343},[996],{"type":58,"value":997},",",{"type":52,"tag":247,"props":999,"children":1000},{"style":349},[1001],{"type":58,"value":1002}," useSubscribe",{"type":52,"tag":247,"props":1004,"children":1005},{"style":343},[1006],{"type":58,"value":357},{"type":52,"tag":247,"props":1008,"children":1009},{"style":337},[1010],{"type":58,"value":362},{"type":52,"tag":247,"props":1012,"children":1013},{"style":343},[1014],{"type":58,"value":367},{"type":52,"tag":247,"props":1016,"children":1017},{"style":259},[1018],{"type":58,"value":1019},"meteor\u002Freact-meteor-data",{"type":52,"tag":247,"props":1021,"children":1022},{"style":343},[1023],{"type":58,"value":377},{"type":52,"tag":247,"props":1025,"children":1026},{"style":343},[1027],{"type":58,"value":382},{"type":52,"tag":247,"props":1029,"children":1030},{"class":249,"line":275},[1031,1035,1039,1044,1048,1052,1056,1061,1065],{"type":52,"tag":247,"props":1032,"children":1033},{"style":337},[1034],{"type":58,"value":340},{"type":52,"tag":247,"props":1036,"children":1037},{"style":343},[1038],{"type":58,"value":346},{"type":52,"tag":247,"props":1040,"children":1041},{"style":349},[1042],{"type":58,"value":1043}," Tasks",{"type":52,"tag":247,"props":1045,"children":1046},{"style":343},[1047],{"type":58,"value":357},{"type":52,"tag":247,"props":1049,"children":1050},{"style":337},[1051],{"type":58,"value":362},{"type":52,"tag":247,"props":1053,"children":1054},{"style":343},[1055],{"type":58,"value":367},{"type":52,"tag":247,"props":1057,"children":1058},{"style":259},[1059],{"type":58,"value":1060},"\u002Fimports\u002Fapi\u002Ftasks",{"type":52,"tag":247,"props":1062,"children":1063},{"style":343},[1064],{"type":58,"value":377},{"type":52,"tag":247,"props":1066,"children":1067},{"style":343},[1068],{"type":58,"value":382},{"type":52,"tag":247,"props":1070,"children":1071},{"class":249,"line":289},[1072],{"type":52,"tag":247,"props":1073,"children":1074},{"emptyLinePlaceholder":495},[1075],{"type":58,"value":498},{"type":52,"tag":247,"props":1077,"children":1078},{"class":249,"line":23},[1079,1084,1089,1094,1099,1105,1110],{"type":52,"tag":247,"props":1080,"children":1081},{"style":337},[1082],{"type":58,"value":1083},"export",{"type":52,"tag":247,"props":1085,"children":1086},{"style":528},[1087],{"type":58,"value":1088}," function",{"type":52,"tag":247,"props":1090,"children":1091},{"style":279},[1092],{"type":58,"value":1093}," TaskList",{"type":52,"tag":247,"props":1095,"children":1096},{"style":343},[1097],{"type":58,"value":1098},"({",{"type":52,"tag":247,"props":1100,"children":1102},{"style":1101},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1103],{"type":58,"value":1104}," listId",{"type":52,"tag":247,"props":1106,"children":1107},{"style":343},[1108],{"type":58,"value":1109}," })",{"type":52,"tag":247,"props":1111,"children":1112},{"style":343},[1113],{"type":58,"value":536},{"type":52,"tag":247,"props":1115,"children":1116},{"class":249,"line":491},[1117,1121,1126,1130,1134,1138,1142,1147,1151,1155,1159,1163],{"type":52,"tag":247,"props":1118,"children":1119},{"style":528},[1120],{"type":58,"value":545},{"type":52,"tag":247,"props":1122,"children":1123},{"style":349},[1124],{"type":58,"value":1125}," isLoading",{"type":52,"tag":247,"props":1127,"children":1128},{"style":343},[1129],{"type":58,"value":555},{"type":52,"tag":247,"props":1131,"children":1132},{"style":279},[1133],{"type":58,"value":1002},{"type":52,"tag":247,"props":1135,"children":1136},{"style":572},[1137],{"type":58,"value":520},{"type":52,"tag":247,"props":1139,"children":1140},{"style":343},[1141],{"type":58,"value":377},{"type":52,"tag":247,"props":1143,"children":1144},{"style":259},[1145],{"type":58,"value":1146},"tasks.byList",{"type":52,"tag":247,"props":1148,"children":1149},{"style":343},[1150],{"type":58,"value":377},{"type":52,"tag":247,"props":1152,"children":1153},{"style":343},[1154],{"type":58,"value":997},{"type":52,"tag":247,"props":1156,"children":1157},{"style":349},[1158],{"type":58,"value":1104},{"type":52,"tag":247,"props":1160,"children":1161},{"style":572},[1162],{"type":58,"value":592},{"type":52,"tag":247,"props":1164,"children":1165},{"style":343},[1166],{"type":58,"value":382},{"type":52,"tag":247,"props":1168,"children":1169},{"class":249,"line":501},[1170,1174,1179,1183,1187],{"type":52,"tag":247,"props":1171,"children":1172},{"style":528},[1173],{"type":58,"value":545},{"type":52,"tag":247,"props":1175,"children":1176},{"style":349},[1177],{"type":58,"value":1178}," tasks",{"type":52,"tag":247,"props":1180,"children":1181},{"style":343},[1182],{"type":58,"value":555},{"type":52,"tag":247,"props":1184,"children":1185},{"style":279},[1186],{"type":58,"value":992},{"type":52,"tag":247,"props":1188,"children":1189},{"style":572},[1190],{"type":58,"value":1191},"(\n",{"type":52,"tag":247,"props":1193,"children":1194},{"class":249,"line":539},[1195,1200,1204,1208,1212,1216,1220,1225,1229,1234,1238,1243,1248,1252,1257,1261,1266,1272,1276,1280,1284],{"type":52,"tag":247,"props":1196,"children":1197},{"style":343},[1198],{"type":58,"value":1199},"    ()",{"type":52,"tag":247,"props":1201,"children":1202},{"style":528},[1203],{"type":58,"value":531},{"type":52,"tag":247,"props":1205,"children":1206},{"style":349},[1207],{"type":58,"value":1043},{"type":52,"tag":247,"props":1209,"children":1210},{"style":343},[1211],{"type":58,"value":99},{"type":52,"tag":247,"props":1213,"children":1214},{"style":279},[1215],{"type":58,"value":940},{"type":52,"tag":247,"props":1217,"children":1218},{"style":572},[1219],{"type":58,"value":520},{"type":52,"tag":247,"props":1221,"children":1222},{"style":343},[1223],{"type":58,"value":1224},"{",{"type":52,"tag":247,"props":1226,"children":1227},{"style":349},[1228],{"type":58,"value":1104},{"type":52,"tag":247,"props":1230,"children":1231},{"style":343},[1232],{"type":58,"value":1233}," },",{"type":52,"tag":247,"props":1235,"children":1236},{"style":343},[1237],{"type":58,"value":346},{"type":52,"tag":247,"props":1239,"children":1240},{"style":572},[1241],{"type":58,"value":1242}," sort",{"type":52,"tag":247,"props":1244,"children":1245},{"style":343},[1246],{"type":58,"value":1247},":",{"type":52,"tag":247,"props":1249,"children":1250},{"style":343},[1251],{"type":58,"value":346},{"type":52,"tag":247,"props":1253,"children":1254},{"style":572},[1255],{"type":58,"value":1256}," createdAt",{"type":52,"tag":247,"props":1258,"children":1259},{"style":343},[1260],{"type":58,"value":1247},{"type":52,"tag":247,"props":1262,"children":1263},{"style":343},[1264],{"type":58,"value":1265}," -",{"type":52,"tag":247,"props":1267,"children":1269},{"style":1268},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1270],{"type":58,"value":1271},"1",{"type":52,"tag":247,"props":1273,"children":1274},{"style":343},[1275],{"type":58,"value":357},{"type":52,"tag":247,"props":1277,"children":1278},{"style":343},[1279],{"type":58,"value":357},{"type":52,"tag":247,"props":1281,"children":1282},{"style":572},[1283],{"type":58,"value":592},{"type":52,"tag":247,"props":1285,"children":1286},{"style":343},[1287],{"type":58,"value":1288},",\n",{"type":52,"tag":247,"props":1290,"children":1291},{"class":249,"line":599},[1292,1297,1302,1307],{"type":52,"tag":247,"props":1293,"children":1294},{"style":572},[1295],{"type":58,"value":1296},"    [",{"type":52,"tag":247,"props":1298,"children":1299},{"style":349},[1300],{"type":58,"value":1301},"listId",{"type":52,"tag":247,"props":1303,"children":1304},{"style":572},[1305],{"type":58,"value":1306},"]",{"type":52,"tag":247,"props":1308,"children":1309},{"style":343},[1310],{"type":58,"value":1288},{"type":52,"tag":247,"props":1312,"children":1313},{"class":249,"line":668},[1314,1319],{"type":52,"tag":247,"props":1315,"children":1316},{"style":572},[1317],{"type":58,"value":1318},"  )",{"type":52,"tag":247,"props":1320,"children":1321},{"style":343},[1322],{"type":58,"value":382},{"type":52,"tag":247,"props":1324,"children":1325},{"class":249,"line":725},[1326],{"type":52,"tag":247,"props":1327,"children":1328},{"emptyLinePlaceholder":495},[1329],{"type":58,"value":498},{"type":52,"tag":247,"props":1331,"children":1333},{"class":249,"line":1332},11,[1334,1338,1342,1346,1351,1356,1361,1365,1370,1375,1380,1384],{"type":52,"tag":247,"props":1335,"children":1336},{"style":337},[1337],{"type":58,"value":605},{"type":52,"tag":247,"props":1339,"children":1340},{"style":572},[1341],{"type":58,"value":610},{"type":52,"tag":247,"props":1343,"children":1344},{"style":279},[1345],{"type":58,"value":836},{"type":52,"tag":247,"props":1347,"children":1348},{"style":572},[1349],{"type":58,"value":1350},"()) ",{"type":52,"tag":247,"props":1352,"children":1353},{"style":337},[1354],{"type":58,"value":1355},"return",{"type":52,"tag":247,"props":1357,"children":1358},{"style":343},[1359],{"type":58,"value":1360}," \u003C",{"type":52,"tag":247,"props":1362,"children":1363},{"style":572},[1364],{"type":58,"value":61},{"type":52,"tag":247,"props":1366,"children":1367},{"style":343},[1368],{"type":58,"value":1369},">",{"type":52,"tag":247,"props":1371,"children":1372},{"style":349},[1373],{"type":58,"value":1374},"Loading...",{"type":52,"tag":247,"props":1376,"children":1377},{"style":343},[1378],{"type":58,"value":1379},"\u003C\u002F",{"type":52,"tag":247,"props":1381,"children":1382},{"style":572},[1383],{"type":58,"value":61},{"type":52,"tag":247,"props":1385,"children":1386},{"style":343},[1387],{"type":58,"value":1388},">;\n",{"type":52,"tag":247,"props":1390,"children":1392},{"class":249,"line":1391},12,[1393,1397,1401,1406,1410,1415,1420,1425,1429,1433,1437,1441,1445,1450,1454,1458],{"type":52,"tag":247,"props":1394,"children":1395},{"style":337},[1396],{"type":58,"value":605},{"type":52,"tag":247,"props":1398,"children":1399},{"style":572},[1400],{"type":58,"value":610},{"type":52,"tag":247,"props":1402,"children":1403},{"style":349},[1404],{"type":58,"value":1405},"tasks",{"type":52,"tag":247,"props":1407,"children":1408},{"style":343},[1409],{"type":58,"value":99},{"type":52,"tag":247,"props":1411,"children":1412},{"style":349},[1413],{"type":58,"value":1414},"length",{"type":52,"tag":247,"props":1416,"children":1417},{"style":343},[1418],{"type":58,"value":1419}," ===",{"type":52,"tag":247,"props":1421,"children":1422},{"style":1268},[1423],{"type":58,"value":1424}," 0",{"type":52,"tag":247,"props":1426,"children":1427},{"style":572},[1428],{"type":58,"value":625},{"type":52,"tag":247,"props":1430,"children":1431},{"style":337},[1432],{"type":58,"value":1355},{"type":52,"tag":247,"props":1434,"children":1435},{"style":343},[1436],{"type":58,"value":1360},{"type":52,"tag":247,"props":1438,"children":1439},{"style":572},[1440],{"type":58,"value":61},{"type":52,"tag":247,"props":1442,"children":1443},{"style":343},[1444],{"type":58,"value":1369},{"type":52,"tag":247,"props":1446,"children":1447},{"style":349},[1448],{"type":58,"value":1449},"No tasks.",{"type":52,"tag":247,"props":1451,"children":1452},{"style":343},[1453],{"type":58,"value":1379},{"type":52,"tag":247,"props":1455,"children":1456},{"style":572},[1457],{"type":58,"value":61},{"type":52,"tag":247,"props":1459,"children":1460},{"style":343},[1461],{"type":58,"value":1388},{"type":52,"tag":247,"props":1463,"children":1465},{"class":249,"line":1464},13,[1466,1471,1475,1479,1484,1488,1492,1497,1501,1505,1510,1514,1518,1522,1526,1531,1536,1540,1544,1549,1554,1558,1562,1567,1572,1576,1580,1584,1588,1592],{"type":52,"tag":247,"props":1467,"children":1468},{"style":337},[1469],{"type":58,"value":1470},"  return",{"type":52,"tag":247,"props":1472,"children":1473},{"style":343},[1474],{"type":58,"value":1360},{"type":52,"tag":247,"props":1476,"children":1477},{"style":572},[1478],{"type":58,"value":177},{"type":52,"tag":247,"props":1480,"children":1481},{"style":343},[1482],{"type":58,"value":1483},">{",{"type":52,"tag":247,"props":1485,"children":1486},{"style":349},[1487],{"type":58,"value":1405},{"type":52,"tag":247,"props":1489,"children":1490},{"style":343},[1491],{"type":58,"value":99},{"type":52,"tag":247,"props":1493,"children":1494},{"style":279},[1495],{"type":58,"value":1496},"map",{"type":52,"tag":247,"props":1498,"children":1499},{"style":349},[1500],{"type":58,"value":520},{"type":52,"tag":247,"props":1502,"children":1503},{"style":343},[1504],{"type":58,"value":520},{"type":52,"tag":247,"props":1506,"children":1507},{"style":1101},[1508],{"type":58,"value":1509},"task",{"type":52,"tag":247,"props":1511,"children":1512},{"style":343},[1513],{"type":58,"value":592},{"type":52,"tag":247,"props":1515,"children":1516},{"style":528},[1517],{"type":58,"value":531},{"type":52,"tag":247,"props":1519,"children":1520},{"style":343},[1521],{"type":58,"value":1360},{"type":52,"tag":247,"props":1523,"children":1524},{"style":572},[1525],{"type":58,"value":78},{"type":52,"tag":247,"props":1527,"children":1528},{"style":528},[1529],{"type":58,"value":1530}," key",{"type":52,"tag":247,"props":1532,"children":1533},{"style":343},[1534],{"type":58,"value":1535},"={",{"type":52,"tag":247,"props":1537,"children":1538},{"style":349},[1539],{"type":58,"value":1509},{"type":52,"tag":247,"props":1541,"children":1542},{"style":343},[1543],{"type":58,"value":99},{"type":52,"tag":247,"props":1545,"children":1546},{"style":349},[1547],{"type":58,"value":1548},"_id",{"type":52,"tag":247,"props":1550,"children":1551},{"style":343},[1552],{"type":58,"value":1553},"}>{",{"type":52,"tag":247,"props":1555,"children":1556},{"style":349},[1557],{"type":58,"value":1509},{"type":52,"tag":247,"props":1559,"children":1560},{"style":343},[1561],{"type":58,"value":99},{"type":52,"tag":247,"props":1563,"children":1564},{"style":349},[1565],{"type":58,"value":1566},"title",{"type":52,"tag":247,"props":1568,"children":1569},{"style":343},[1570],{"type":58,"value":1571},"}\u003C\u002F",{"type":52,"tag":247,"props":1573,"children":1574},{"style":572},[1575],{"type":58,"value":78},{"type":52,"tag":247,"props":1577,"children":1578},{"style":343},[1579],{"type":58,"value":1369},{"type":52,"tag":247,"props":1581,"children":1582},{"style":349},[1583],{"type":58,"value":592},{"type":52,"tag":247,"props":1585,"children":1586},{"style":343},[1587],{"type":58,"value":1571},{"type":52,"tag":247,"props":1589,"children":1590},{"style":572},[1591],{"type":58,"value":177},{"type":52,"tag":247,"props":1593,"children":1594},{"style":343},[1595],{"type":58,"value":1388},{"type":52,"tag":247,"props":1597,"children":1599},{"class":249,"line":1598},14,[1600],{"type":52,"tag":247,"props":1601,"children":1602},{"style":343},[1603],{"type":58,"value":1604},"}\n",{"type":52,"tag":61,"props":1606,"children":1607},{},[1608,1613,1615,1620,1622,1627,1629,1635],{"type":52,"tag":84,"props":1609,"children":1611},{"className":1610},[],[1612],{"type":58,"value":208},{"type":58,"value":1614}," owns cursor observation and updates only changed document references.\nUse ",{"type":52,"tag":84,"props":1616,"children":1618},{"className":1617},[],[1619],{"type":58,"value":216},{"type":58,"value":1621}," when a transformed aggregate is clearer. Read\n",{"type":52,"tag":84,"props":1623,"children":1625},{"className":1624},[],[1626],{"type":58,"value":320},{"type":58,"value":1628}," before tuning dependencies or ",{"type":52,"tag":84,"props":1630,"children":1632},{"className":1631},[],[1633],{"type":58,"value":1634},"skipUpdate",{"type":58,"value":99},{"type":52,"tag":67,"props":1637,"children":1639},{"id":1638},"suspense-and-async-reactivity",[1640],{"type":58,"value":1641},"Suspense and async reactivity",{"type":52,"tag":61,"props":1643,"children":1644},{},[1645],{"type":58,"value":1646},"Suspense imports change signatures; they are not drop-in replacements:",{"type":52,"tag":236,"props":1648,"children":1650},{"className":325,"code":1649,"language":327,"meta":241,"style":241},"import { Suspense } from \"react\";\nimport { useFind, useSubscribe } from \"meteor\u002Freact-meteor-data\u002Fsuspense\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\n\nfunction TaskList({ listId }) {\n  useSubscribe(\"tasks.byList\", listId);\n  const tasks = useFind(Tasks, [\n    { listId },\n    { sort: { createdAt: -1 } },\n  ], [listId]);\n  return \u003Cul>{tasks.map((task) => \u003Cli key={task._id}>{task.title}\u003C\u002Fli>)}\u003C\u002Ful>;\n}\n\nexport function TaskScreen({ listId }) {\n  return (\n    \u003CAppErrorBoundary>\n      \u003CSuspense fallback={\u003Cp>Loading...\u003C\u002Fp>}>\n        \u003CTaskList listId={listId} \u002F>\n      \u003C\u002FSuspense>\n    \u003C\u002FAppErrorBoundary>\n  );\n}\n",[1651],{"type":52,"tag":84,"props":1652,"children":1653},{"__ignoreMap":241},[1654,1694,1742,1781,1788,1816,1856,1893,1910,1953,1983,2106,2113,2120,2152,2165,2184,2233,2264,2281,2298,2310],{"type":52,"tag":247,"props":1655,"children":1656},{"class":249,"line":250},[1657,1661,1665,1670,1674,1678,1682,1686,1690],{"type":52,"tag":247,"props":1658,"children":1659},{"style":337},[1660],{"type":58,"value":340},{"type":52,"tag":247,"props":1662,"children":1663},{"style":343},[1664],{"type":58,"value":346},{"type":52,"tag":247,"props":1666,"children":1667},{"style":349},[1668],{"type":58,"value":1669}," Suspense",{"type":52,"tag":247,"props":1671,"children":1672},{"style":343},[1673],{"type":58,"value":357},{"type":52,"tag":247,"props":1675,"children":1676},{"style":337},[1677],{"type":58,"value":362},{"type":52,"tag":247,"props":1679,"children":1680},{"style":343},[1681],{"type":58,"value":367},{"type":52,"tag":247,"props":1683,"children":1684},{"style":259},[1685],{"type":58,"value":14},{"type":52,"tag":247,"props":1687,"children":1688},{"style":343},[1689],{"type":58,"value":377},{"type":52,"tag":247,"props":1691,"children":1692},{"style":343},[1693],{"type":58,"value":382},{"type":52,"tag":247,"props":1695,"children":1696},{"class":249,"line":275},[1697,1701,1705,1709,1713,1717,1721,1725,1729,1734,1738],{"type":52,"tag":247,"props":1698,"children":1699},{"style":337},[1700],{"type":58,"value":340},{"type":52,"tag":247,"props":1702,"children":1703},{"style":343},[1704],{"type":58,"value":346},{"type":52,"tag":247,"props":1706,"children":1707},{"style":349},[1708],{"type":58,"value":992},{"type":52,"tag":247,"props":1710,"children":1711},{"style":343},[1712],{"type":58,"value":997},{"type":52,"tag":247,"props":1714,"children":1715},{"style":349},[1716],{"type":58,"value":1002},{"type":52,"tag":247,"props":1718,"children":1719},{"style":343},[1720],{"type":58,"value":357},{"type":52,"tag":247,"props":1722,"children":1723},{"style":337},[1724],{"type":58,"value":362},{"type":52,"tag":247,"props":1726,"children":1727},{"style":343},[1728],{"type":58,"value":367},{"type":52,"tag":247,"props":1730,"children":1731},{"style":259},[1732],{"type":58,"value":1733},"meteor\u002Freact-meteor-data\u002Fsuspense",{"type":52,"tag":247,"props":1735,"children":1736},{"style":343},[1737],{"type":58,"value":377},{"type":52,"tag":247,"props":1739,"children":1740},{"style":343},[1741],{"type":58,"value":382},{"type":52,"tag":247,"props":1743,"children":1744},{"class":249,"line":289},[1745,1749,1753,1757,1761,1765,1769,1773,1777],{"type":52,"tag":247,"props":1746,"children":1747},{"style":337},[1748],{"type":58,"value":340},{"type":52,"tag":247,"props":1750,"children":1751},{"style":343},[1752],{"type":58,"value":346},{"type":52,"tag":247,"props":1754,"children":1755},{"style":349},[1756],{"type":58,"value":1043},{"type":52,"tag":247,"props":1758,"children":1759},{"style":343},[1760],{"type":58,"value":357},{"type":52,"tag":247,"props":1762,"children":1763},{"style":337},[1764],{"type":58,"value":362},{"type":52,"tag":247,"props":1766,"children":1767},{"style":343},[1768],{"type":58,"value":367},{"type":52,"tag":247,"props":1770,"children":1771},{"style":259},[1772],{"type":58,"value":1060},{"type":52,"tag":247,"props":1774,"children":1775},{"style":343},[1776],{"type":58,"value":377},{"type":52,"tag":247,"props":1778,"children":1779},{"style":343},[1780],{"type":58,"value":382},{"type":52,"tag":247,"props":1782,"children":1783},{"class":249,"line":23},[1784],{"type":52,"tag":247,"props":1785,"children":1786},{"emptyLinePlaceholder":495},[1787],{"type":58,"value":498},{"type":52,"tag":247,"props":1789,"children":1790},{"class":249,"line":491},[1791,1796,1800,1804,1808,1812],{"type":52,"tag":247,"props":1792,"children":1793},{"style":528},[1794],{"type":58,"value":1795},"function",{"type":52,"tag":247,"props":1797,"children":1798},{"style":279},[1799],{"type":58,"value":1093},{"type":52,"tag":247,"props":1801,"children":1802},{"style":343},[1803],{"type":58,"value":1098},{"type":52,"tag":247,"props":1805,"children":1806},{"style":1101},[1807],{"type":58,"value":1104},{"type":52,"tag":247,"props":1809,"children":1810},{"style":343},[1811],{"type":58,"value":1109},{"type":52,"tag":247,"props":1813,"children":1814},{"style":343},[1815],{"type":58,"value":536},{"type":52,"tag":247,"props":1817,"children":1818},{"class":249,"line":501},[1819,1824,1828,1832,1836,1840,1844,1848,1852],{"type":52,"tag":247,"props":1820,"children":1821},{"style":279},[1822],{"type":58,"value":1823},"  useSubscribe",{"type":52,"tag":247,"props":1825,"children":1826},{"style":572},[1827],{"type":58,"value":520},{"type":52,"tag":247,"props":1829,"children":1830},{"style":343},[1831],{"type":58,"value":377},{"type":52,"tag":247,"props":1833,"children":1834},{"style":259},[1835],{"type":58,"value":1146},{"type":52,"tag":247,"props":1837,"children":1838},{"style":343},[1839],{"type":58,"value":377},{"type":52,"tag":247,"props":1841,"children":1842},{"style":343},[1843],{"type":58,"value":997},{"type":52,"tag":247,"props":1845,"children":1846},{"style":349},[1847],{"type":58,"value":1104},{"type":52,"tag":247,"props":1849,"children":1850},{"style":572},[1851],{"type":58,"value":592},{"type":52,"tag":247,"props":1853,"children":1854},{"style":343},[1855],{"type":58,"value":382},{"type":52,"tag":247,"props":1857,"children":1858},{"class":249,"line":539},[1859,1863,1867,1871,1875,1879,1884,1888],{"type":52,"tag":247,"props":1860,"children":1861},{"style":528},[1862],{"type":58,"value":545},{"type":52,"tag":247,"props":1864,"children":1865},{"style":349},[1866],{"type":58,"value":1178},{"type":52,"tag":247,"props":1868,"children":1869},{"style":343},[1870],{"type":58,"value":555},{"type":52,"tag":247,"props":1872,"children":1873},{"style":279},[1874],{"type":58,"value":992},{"type":52,"tag":247,"props":1876,"children":1877},{"style":572},[1878],{"type":58,"value":520},{"type":52,"tag":247,"props":1880,"children":1881},{"style":349},[1882],{"type":58,"value":1883},"Tasks",{"type":52,"tag":247,"props":1885,"children":1886},{"style":343},[1887],{"type":58,"value":997},{"type":52,"tag":247,"props":1889,"children":1890},{"style":572},[1891],{"type":58,"value":1892}," [\n",{"type":52,"tag":247,"props":1894,"children":1895},{"class":249,"line":599},[1896,1901,1905],{"type":52,"tag":247,"props":1897,"children":1898},{"style":343},[1899],{"type":58,"value":1900},"    {",{"type":52,"tag":247,"props":1902,"children":1903},{"style":349},[1904],{"type":58,"value":1104},{"type":52,"tag":247,"props":1906,"children":1907},{"style":343},[1908],{"type":58,"value":1909}," },\n",{"type":52,"tag":247,"props":1911,"children":1912},{"class":249,"line":668},[1913,1917,1921,1925,1929,1933,1937,1941,1945,1949],{"type":52,"tag":247,"props":1914,"children":1915},{"style":343},[1916],{"type":58,"value":1900},{"type":52,"tag":247,"props":1918,"children":1919},{"style":572},[1920],{"type":58,"value":1242},{"type":52,"tag":247,"props":1922,"children":1923},{"style":343},[1924],{"type":58,"value":1247},{"type":52,"tag":247,"props":1926,"children":1927},{"style":343},[1928],{"type":58,"value":346},{"type":52,"tag":247,"props":1930,"children":1931},{"style":572},[1932],{"type":58,"value":1256},{"type":52,"tag":247,"props":1934,"children":1935},{"style":343},[1936],{"type":58,"value":1247},{"type":52,"tag":247,"props":1938,"children":1939},{"style":343},[1940],{"type":58,"value":1265},{"type":52,"tag":247,"props":1942,"children":1943},{"style":1268},[1944],{"type":58,"value":1271},{"type":52,"tag":247,"props":1946,"children":1947},{"style":343},[1948],{"type":58,"value":357},{"type":52,"tag":247,"props":1950,"children":1951},{"style":343},[1952],{"type":58,"value":1909},{"type":52,"tag":247,"props":1954,"children":1955},{"class":249,"line":725},[1956,1961,1965,1970,1974,1979],{"type":52,"tag":247,"props":1957,"children":1958},{"style":572},[1959],{"type":58,"value":1960},"  ]",{"type":52,"tag":247,"props":1962,"children":1963},{"style":343},[1964],{"type":58,"value":997},{"type":52,"tag":247,"props":1966,"children":1967},{"style":572},[1968],{"type":58,"value":1969}," [",{"type":52,"tag":247,"props":1971,"children":1972},{"style":349},[1973],{"type":58,"value":1301},{"type":52,"tag":247,"props":1975,"children":1976},{"style":572},[1977],{"type":58,"value":1978},"])",{"type":52,"tag":247,"props":1980,"children":1981},{"style":343},[1982],{"type":58,"value":382},{"type":52,"tag":247,"props":1984,"children":1985},{"class":249,"line":1332},[1986,1990,1994,1998,2002,2006,2010,2014,2018,2022,2026,2030,2034,2038,2042,2046,2050,2054,2058,2062,2066,2070,2074,2078,2082,2086,2090,2094,2098,2102],{"type":52,"tag":247,"props":1987,"children":1988},{"style":337},[1989],{"type":58,"value":1470},{"type":52,"tag":247,"props":1991,"children":1992},{"style":343},[1993],{"type":58,"value":1360},{"type":52,"tag":247,"props":1995,"children":1996},{"style":572},[1997],{"type":58,"value":177},{"type":52,"tag":247,"props":1999,"children":2000},{"style":343},[2001],{"type":58,"value":1483},{"type":52,"tag":247,"props":2003,"children":2004},{"style":349},[2005],{"type":58,"value":1405},{"type":52,"tag":247,"props":2007,"children":2008},{"style":343},[2009],{"type":58,"value":99},{"type":52,"tag":247,"props":2011,"children":2012},{"style":279},[2013],{"type":58,"value":1496},{"type":52,"tag":247,"props":2015,"children":2016},{"style":349},[2017],{"type":58,"value":520},{"type":52,"tag":247,"props":2019,"children":2020},{"style":343},[2021],{"type":58,"value":520},{"type":52,"tag":247,"props":2023,"children":2024},{"style":1101},[2025],{"type":58,"value":1509},{"type":52,"tag":247,"props":2027,"children":2028},{"style":343},[2029],{"type":58,"value":592},{"type":52,"tag":247,"props":2031,"children":2032},{"style":528},[2033],{"type":58,"value":531},{"type":52,"tag":247,"props":2035,"children":2036},{"style":343},[2037],{"type":58,"value":1360},{"type":52,"tag":247,"props":2039,"children":2040},{"style":572},[2041],{"type":58,"value":78},{"type":52,"tag":247,"props":2043,"children":2044},{"style":528},[2045],{"type":58,"value":1530},{"type":52,"tag":247,"props":2047,"children":2048},{"style":343},[2049],{"type":58,"value":1535},{"type":52,"tag":247,"props":2051,"children":2052},{"style":349},[2053],{"type":58,"value":1509},{"type":52,"tag":247,"props":2055,"children":2056},{"style":343},[2057],{"type":58,"value":99},{"type":52,"tag":247,"props":2059,"children":2060},{"style":349},[2061],{"type":58,"value":1548},{"type":52,"tag":247,"props":2063,"children":2064},{"style":343},[2065],{"type":58,"value":1553},{"type":52,"tag":247,"props":2067,"children":2068},{"style":349},[2069],{"type":58,"value":1509},{"type":52,"tag":247,"props":2071,"children":2072},{"style":343},[2073],{"type":58,"value":99},{"type":52,"tag":247,"props":2075,"children":2076},{"style":349},[2077],{"type":58,"value":1566},{"type":52,"tag":247,"props":2079,"children":2080},{"style":343},[2081],{"type":58,"value":1571},{"type":52,"tag":247,"props":2083,"children":2084},{"style":572},[2085],{"type":58,"value":78},{"type":52,"tag":247,"props":2087,"children":2088},{"style":343},[2089],{"type":58,"value":1369},{"type":52,"tag":247,"props":2091,"children":2092},{"style":349},[2093],{"type":58,"value":592},{"type":52,"tag":247,"props":2095,"children":2096},{"style":343},[2097],{"type":58,"value":1571},{"type":52,"tag":247,"props":2099,"children":2100},{"style":572},[2101],{"type":58,"value":177},{"type":52,"tag":247,"props":2103,"children":2104},{"style":343},[2105],{"type":58,"value":1388},{"type":52,"tag":247,"props":2107,"children":2108},{"class":249,"line":1391},[2109],{"type":52,"tag":247,"props":2110,"children":2111},{"style":343},[2112],{"type":58,"value":1604},{"type":52,"tag":247,"props":2114,"children":2115},{"class":249,"line":1464},[2116],{"type":52,"tag":247,"props":2117,"children":2118},{"emptyLinePlaceholder":495},[2119],{"type":58,"value":498},{"type":52,"tag":247,"props":2121,"children":2122},{"class":249,"line":1598},[2123,2127,2131,2136,2140,2144,2148],{"type":52,"tag":247,"props":2124,"children":2125},{"style":337},[2126],{"type":58,"value":1083},{"type":52,"tag":247,"props":2128,"children":2129},{"style":528},[2130],{"type":58,"value":1088},{"type":52,"tag":247,"props":2132,"children":2133},{"style":279},[2134],{"type":58,"value":2135}," TaskScreen",{"type":52,"tag":247,"props":2137,"children":2138},{"style":343},[2139],{"type":58,"value":1098},{"type":52,"tag":247,"props":2141,"children":2142},{"style":1101},[2143],{"type":58,"value":1104},{"type":52,"tag":247,"props":2145,"children":2146},{"style":343},[2147],{"type":58,"value":1109},{"type":52,"tag":247,"props":2149,"children":2150},{"style":343},[2151],{"type":58,"value":536},{"type":52,"tag":247,"props":2153,"children":2155},{"class":249,"line":2154},15,[2156,2160],{"type":52,"tag":247,"props":2157,"children":2158},{"style":337},[2159],{"type":58,"value":1470},{"type":52,"tag":247,"props":2161,"children":2162},{"style":572},[2163],{"type":58,"value":2164}," (\n",{"type":52,"tag":247,"props":2166,"children":2168},{"class":249,"line":2167},16,[2169,2174,2179],{"type":52,"tag":247,"props":2170,"children":2171},{"style":343},[2172],{"type":58,"value":2173},"    \u003C",{"type":52,"tag":247,"props":2175,"children":2176},{"style":254},[2177],{"type":58,"value":2178},"AppErrorBoundary",{"type":52,"tag":247,"props":2180,"children":2181},{"style":343},[2182],{"type":58,"value":2183},">\n",{"type":52,"tag":247,"props":2185,"children":2187},{"class":249,"line":2186},17,[2188,2193,2198,2203,2208,2212,2216,2220,2224,2228],{"type":52,"tag":247,"props":2189,"children":2190},{"style":343},[2191],{"type":58,"value":2192},"      \u003C",{"type":52,"tag":247,"props":2194,"children":2195},{"style":254},[2196],{"type":58,"value":2197},"Suspense",{"type":52,"tag":247,"props":2199,"children":2200},{"style":528},[2201],{"type":58,"value":2202}," fallback",{"type":52,"tag":247,"props":2204,"children":2205},{"style":343},[2206],{"type":58,"value":2207},"={\u003C",{"type":52,"tag":247,"props":2209,"children":2210},{"style":572},[2211],{"type":58,"value":61},{"type":52,"tag":247,"props":2213,"children":2214},{"style":343},[2215],{"type":58,"value":1369},{"type":52,"tag":247,"props":2217,"children":2218},{"style":349},[2219],{"type":58,"value":1374},{"type":52,"tag":247,"props":2221,"children":2222},{"style":343},[2223],{"type":58,"value":1379},{"type":52,"tag":247,"props":2225,"children":2226},{"style":572},[2227],{"type":58,"value":61},{"type":52,"tag":247,"props":2229,"children":2230},{"style":343},[2231],{"type":58,"value":2232},">}>\n",{"type":52,"tag":247,"props":2234,"children":2236},{"class":249,"line":2235},18,[2237,2242,2247,2251,2255,2259],{"type":52,"tag":247,"props":2238,"children":2239},{"style":343},[2240],{"type":58,"value":2241},"        \u003C",{"type":52,"tag":247,"props":2243,"children":2244},{"style":254},[2245],{"type":58,"value":2246},"TaskList",{"type":52,"tag":247,"props":2248,"children":2249},{"style":528},[2250],{"type":58,"value":1104},{"type":52,"tag":247,"props":2252,"children":2253},{"style":343},[2254],{"type":58,"value":1535},{"type":52,"tag":247,"props":2256,"children":2257},{"style":349},[2258],{"type":58,"value":1301},{"type":52,"tag":247,"props":2260,"children":2261},{"style":343},[2262],{"type":58,"value":2263},"} \u002F>\n",{"type":52,"tag":247,"props":2265,"children":2267},{"class":249,"line":2266},19,[2268,2273,2277],{"type":52,"tag":247,"props":2269,"children":2270},{"style":343},[2271],{"type":58,"value":2272},"      \u003C\u002F",{"type":52,"tag":247,"props":2274,"children":2275},{"style":254},[2276],{"type":58,"value":2197},{"type":52,"tag":247,"props":2278,"children":2279},{"style":343},[2280],{"type":58,"value":2183},{"type":52,"tag":247,"props":2282,"children":2284},{"class":249,"line":2283},20,[2285,2290,2294],{"type":52,"tag":247,"props":2286,"children":2287},{"style":343},[2288],{"type":58,"value":2289},"    \u003C\u002F",{"type":52,"tag":247,"props":2291,"children":2292},{"style":254},[2293],{"type":58,"value":2178},{"type":52,"tag":247,"props":2295,"children":2296},{"style":343},[2297],{"type":58,"value":2183},{"type":52,"tag":247,"props":2299,"children":2301},{"class":249,"line":2300},21,[2302,2306],{"type":52,"tag":247,"props":2303,"children":2304},{"style":572},[2305],{"type":58,"value":1318},{"type":52,"tag":247,"props":2307,"children":2308},{"style":343},[2309],{"type":58,"value":382},{"type":52,"tag":247,"props":2311,"children":2313},{"class":249,"line":2312},22,[2314],{"type":52,"tag":247,"props":2315,"children":2316},{"style":343},[2317],{"type":58,"value":1604},{"type":52,"tag":61,"props":2319,"children":2320},{},[2321,2323,2328,2330,2336,2338,2344,2346,2352],{"type":58,"value":2322},"Treat Suspense ",{"type":52,"tag":84,"props":2324,"children":2326},{"className":2325},[],[2327],{"type":58,"value":200},{"type":58,"value":2329}," as a suspension-only call. In the currently\naudited package, its declared return type and runtime value disagree, so do not\nconsume the return. Read ",{"type":52,"tag":84,"props":2331,"children":2333},{"className":2332},[],[2334],{"type":58,"value":2335},"references\u002Fsuspense-and-async.md",{"type":58,"value":2337}," for stable keys,\nrejections, SSR, and ",{"type":52,"tag":84,"props":2339,"children":2341},{"className":2340},[],[2342],{"type":58,"value":2343},"Tracker.withComputation",{"type":58,"value":2345}," after ",{"type":52,"tag":84,"props":2347,"children":2349},{"className":2348},[],[2350],{"type":58,"value":2351},"await",{"type":58,"value":99},{"type":52,"tag":67,"props":2354,"children":2356},{"id":2355},"build-and-refresh-ownership",[2357],{"type":58,"value":2358},"Build and refresh ownership",{"type":52,"tag":61,"props":2360,"children":2361},{},[2362],{"type":58,"value":2363},"Rspack detects React from the app's npm dependencies, enables JSX or TSX SWC\nparsing, and installs and injects React Refresh for client development. A\nnormal React Rspack app does not add the refresh plugin manually.",{"type":52,"tag":61,"props":2365,"children":2366},{},[2367,2369,2374,2376,2382,2384,2390],{"type":58,"value":2368},"Keep ",{"type":52,"tag":84,"props":2370,"children":2372},{"className":2371},[],[2373],{"type":58,"value":133},{"type":58,"value":2375}," minimal. The generated JavaScript skeleton demonstrates\nan optional SVGR rule; the TypeScript skeleton demonstrates type checking.\nCompose custom rules through ",{"type":52,"tag":84,"props":2377,"children":2379},{"className":2378},[],[2380],{"type":58,"value":2381},"defineConfig",{"type":58,"value":2383}," from ",{"type":52,"tag":84,"props":2385,"children":2387},{"className":2386},[],[2388],{"type":58,"value":2389},"@meteorjs\u002Frspack",{"type":58,"value":2391}," without\nreplacing Meteor's SWC defaults.",{"type":52,"tag":776,"props":2393,"children":2394},{},[2395,2411],{"type":52,"tag":780,"props":2396,"children":2397},{},[2398],{"type":52,"tag":784,"props":2399,"children":2400},{},[2401,2406],{"type":52,"tag":788,"props":2402,"children":2403},{},[2404],{"type":58,"value":2405},"Request",{"type":52,"tag":788,"props":2407,"children":2408},{},[2409],{"type":58,"value":2410},"Owner",{"type":52,"tag":804,"props":2412,"children":2413},{},[2414,2427,2452,2469],{"type":52,"tag":784,"props":2415,"children":2416},{},[2417,2422],{"type":52,"tag":811,"props":2418,"children":2419},{},[2420],{"type":58,"value":2421},"React detection, JSX or TSX, React Refresh boundary",{"type":52,"tag":811,"props":2423,"children":2424},{},[2425],{"type":58,"value":2426},"This skill",{"type":52,"tag":784,"props":2428,"children":2429},{},[2430,2443],{"type":52,"tag":811,"props":2431,"children":2432},{},[2433,2435,2441],{"type":58,"value":2434},"General ",{"type":52,"tag":84,"props":2436,"children":2438},{"className":2437},[],[2439],{"type":58,"value":2440},"rspack.config",{"type":58,"value":2442}," helpers, SWC, aliases, cache, chunks",{"type":52,"tag":811,"props":2444,"children":2445},{},[2446],{"type":52,"tag":84,"props":2447,"children":2449},{"className":2448},[],[2450],{"type":58,"value":2451},"meteor-modern-build-stack",{"type":52,"tag":784,"props":2453,"children":2454},{},[2455,2460],{"type":52,"tag":811,"props":2456,"children":2457},{},[2458],{"type":58,"value":2459},"Convert an existing app or legacy build plugin to Rspack",{"type":52,"tag":811,"props":2461,"children":2462},{},[2463],{"type":52,"tag":84,"props":2464,"children":2466},{"className":2465},[],[2467],{"type":58,"value":2468},"migrate-to-rspack",{"type":52,"tag":784,"props":2470,"children":2471},{},[2472,2485],{"type":52,"tag":811,"props":2473,"children":2474},{},[2475,2477,2483],{"type":58,"value":2476},"Meteor-bundler HMR or custom ",{"type":52,"tag":84,"props":2478,"children":2480},{"className":2479},[],[2481],{"type":58,"value":2482},"module.hot",{"type":58,"value":2484}," lifecycle",{"type":52,"tag":811,"props":2486,"children":2487},{},[2488],{"type":58,"value":2489},"Build skill, then this skill for React symptoms",{"type":52,"tag":61,"props":2491,"children":2492},{},[2493,2495,2501,2503,2509,2511,2517],{"type":58,"value":2494},"If edits reload the page or reset component state, first determine which\nbundler compiled the module. In a Rspack client graph, inspect React Refresh\nboundaries and avoid a second ",{"type":52,"tag":84,"props":2496,"children":2498},{"className":2497},[],[2499],{"type":58,"value":2500},"react-fast-refresh",{"type":58,"value":2502}," stack. In a Meteor-bundler\ngraph, verify ",{"type":52,"tag":84,"props":2504,"children":2506},{"className":2505},[],[2507],{"type":58,"value":2508},"hot-module-replacement",{"type":58,"value":2510}," and the bundled React Fast Refresh\nintegration. See ",{"type":52,"tag":84,"props":2512,"children":2514},{"className":2513},[],[2515],{"type":58,"value":2516},"references\u002Fbuild-refresh-and-testing.md",{"type":58,"value":99},{"type":52,"tag":67,"props":2519,"children":2521},{"id":2520},"mutations-and-tests",[2522],{"type":58,"value":2523},"Mutations and tests",{"type":52,"tag":61,"props":2525,"children":2526},{},[2527,2529,2535],{"type":58,"value":2528},"Call ",{"type":52,"tag":84,"props":2530,"children":2532},{"className":2531},[],[2533],{"type":58,"value":2534},"Meteor.callAsync",{"type":58,"value":2536}," from event handlers, model pending and rejection in\nReact state, and leave validation and authorization inside the method. Do not\nwrite sensitive collections directly from a component.",{"type":52,"tag":61,"props":2538,"children":2539},{},[2540],{"type":58,"value":2541},"For tests, separate a presentational component that accepts data as props from\nthe hook-owning container. Unit-test the former with the project's existing\nReact test library. Test the latter in a browser client with controlled\nMinimongo or a real publication. Assert rendered behavior, not the number of\nreactive-function calls, because React can discard work and invoke initial\nrender logic more than once.",{"type":52,"tag":67,"props":2543,"children":2545},{"id":2544},"anti-patterns",[2546],{"type":58,"value":2547},"Anti-patterns",{"type":52,"tag":177,"props":2549,"children":2550},{},[2551,2563,2583,2595,2607,2612,2617,2629,2642,2647],{"type":52,"tag":78,"props":2552,"children":2553},{},[2554,2556,2561],{"type":58,"value":2555},"Treat classic ",{"type":52,"tag":84,"props":2557,"children":2559},{"className":2558},[],[2560],{"type":58,"value":836},{"type":58,"value":2562}," as a boolean. It is a function and must be called.",{"type":52,"tag":78,"props":2564,"children":2565},{},[2566,2568,2574,2576,2581],{"type":58,"value":2567},"Pass ",{"type":52,"tag":84,"props":2569,"children":2571},{"className":2570},[],[2572],{"type":58,"value":2573},"Tasks.find().fetch()",{"type":58,"value":2575}," to ",{"type":52,"tag":84,"props":2577,"children":2579},{"className":2578},[],[2580],{"type":58,"value":208},{"type":58,"value":2582},". Return the cursor.",{"type":52,"tag":78,"props":2584,"children":2585},{},[2586,2588,2593],{"type":58,"value":2587},"Put a subscription inside a ",{"type":52,"tag":84,"props":2589,"children":2591},{"className":2590},[],[2592],{"type":58,"value":208},{"type":58,"value":2594}," factory. Subscribe separately.",{"type":52,"tag":78,"props":2596,"children":2597},{},[2598,2600,2605],{"type":58,"value":2599},"Call React state setters, methods, analytics, or arbitrary effects inside a\n",{"type":52,"tag":84,"props":2601,"children":2603},{"className":2602},[],[2604],{"type":58,"value":216},{"type":58,"value":2606}," reactive function.",{"type":52,"tag":78,"props":2608,"children":2609},{},[2610],{"type":58,"value":2611},"Force every classic component onto Suspense. Both surfaces remain useful.",{"type":52,"tag":78,"props":2613,"children":2614},{},[2615],{"type":58,"value":2616},"Reuse a generic Suspense key for unrelated mounted computations.",{"type":52,"tag":78,"props":2618,"children":2619},{},[2620,2622,2627],{"type":58,"value":2621},"Read a Tracker source only after ",{"type":52,"tag":84,"props":2623,"children":2625},{"className":2624},[],[2626],{"type":58,"value":2351},{"type":58,"value":2628}," without restoring the computation.",{"type":52,"tag":78,"props":2630,"children":2631},{},[2632,2634,2640],{"type":58,"value":2633},"Add ",{"type":52,"tag":84,"props":2635,"children":2637},{"className":2636},[],[2638],{"type":58,"value":2639},"@rspack\u002Fplugin-react-refresh",{"type":58,"value":2641}," to project config when Meteor already\ninjected it.",{"type":52,"tag":78,"props":2643,"children":2644},{},[2645],{"type":58,"value":2646},"Replace all Rspack SWC options to add one React transform. Extend them.",{"type":52,"tag":78,"props":2648,"children":2649},{},[2650],{"type":58,"value":2651},"Mock away all Meteor data behavior in a component integration test.",{"type":52,"tag":67,"props":2653,"children":2655},{"id":2654},"authoritative-resources",[2656],{"type":58,"value":2657},"Authoritative resources",{"type":52,"tag":177,"props":2659,"children":2660},{},[2661,2673,2688,2704,2714,2729,2739,2747,2755,2763],{"type":52,"tag":78,"props":2662,"children":2663},{},[2664],{"type":52,"tag":2665,"props":2666,"children":2670},"a",{"href":2667,"rel":2668},"https:\u002F\u002Fdocs.meteor.com\u002Ftutorials\u002Freact\u002F",[2669],"nofollow",[2671],{"type":58,"value":2672},"Meteor React tutorial",{"type":52,"tag":78,"props":2674,"children":2675},{},[2676],{"type":52,"tag":2665,"props":2677,"children":2680},{"href":2678,"rel":2679},"https:\u002F\u002Fdocs.meteor.com\u002Fpackages\u002Freact-meteor-data.html",[2669],[2681,2686],{"type":52,"tag":84,"props":2682,"children":2684},{"className":2683},[],[2685],{"type":58,"value":141},{"type":58,"value":2687}," documentation",{"type":52,"tag":78,"props":2689,"children":2690},{},[2691],{"type":52,"tag":2665,"props":2692,"children":2695},{"href":2693,"rel":2694},"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Freact-packages\u002Ftree\u002Fmaster\u002Fpackages\u002Freact-meteor-data",[2669],[2696,2702],{"type":52,"tag":84,"props":2697,"children":2699},{"className":2698},[],[2700],{"type":58,"value":2701},"meteor\u002Freact-packages",{"type":58,"value":2703}," source and changelog",{"type":52,"tag":78,"props":2705,"children":2706},{},[2707],{"type":52,"tag":2665,"props":2708,"children":2711},{"href":2709,"rel":2710},"https:\u002F\u002Fdocs.meteor.com\u002Fabout\u002Fmodern-build-stack\u002Frspack-bundler-integration.html",[2669],[2712],{"type":58,"value":2713},"Meteor Rspack integration",{"type":52,"tag":78,"props":2715,"children":2716},{},[2717],{"type":52,"tag":2665,"props":2718,"children":2721},{"href":2719,"rel":2720},"https:\u002F\u002Freact.dev\u002Freference\u002Freact-dom\u002Fclient\u002FcreateRoot",[2669],[2722,2724],{"type":58,"value":2723},"React ",{"type":52,"tag":84,"props":2725,"children":2727},{"className":2726},[],[2728],{"type":58,"value":162},{"type":52,"tag":78,"props":2730,"children":2731},{},[2732],{"type":52,"tag":2665,"props":2733,"children":2736},{"href":2734,"rel":2735},"https:\u002F\u002Freact.dev\u002Freference\u002Freact\u002FSuspense",[2669],[2737],{"type":58,"value":2738},"React Suspense",{"type":52,"tag":78,"props":2740,"children":2741},{},[2742],{"type":52,"tag":84,"props":2743,"children":2745},{"className":2744},[],[2746],{"type":58,"value":320},{"type":52,"tag":78,"props":2748,"children":2749},{},[2750],{"type":52,"tag":84,"props":2751,"children":2753},{"className":2752},[],[2754],{"type":58,"value":2335},{"type":52,"tag":78,"props":2756,"children":2757},{},[2758],{"type":52,"tag":84,"props":2759,"children":2761},{"className":2760},[],[2762],{"type":58,"value":2516},{"type":52,"tag":78,"props":2764,"children":2765},{},[2766],{"type":52,"tag":84,"props":2767,"children":2769},{"className":2768},[],[2770],{"type":58,"value":2771},"references\u002Feval-cases.md",{"type":52,"tag":2773,"props":2774,"children":2775},"style",{},[2776],{"type":58,"value":2777},"html .light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html.light .shiki span {color: var(--shiki-light);background: var(--shiki-light-bg);font-style: var(--shiki-light-font-style);font-weight: var(--shiki-light-font-weight);text-decoration: var(--shiki-light-text-decoration);}html .default .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .shiki span {color: var(--shiki-default);background: var(--shiki-default-bg);font-style: var(--shiki-default-font-style);font-weight: var(--shiki-default-font-weight);text-decoration: var(--shiki-default-text-decoration);}html .dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}html.dark .shiki span {color: var(--shiki-dark);background: var(--shiki-dark-bg);font-style: var(--shiki-dark-font-style);font-weight: var(--shiki-dark-font-weight);text-decoration: var(--shiki-dark-text-decoration);}",{"items":2779,"total":1598},[2780,2797,2807,2818,2832,2849,2863,2876,2891,2903,2910,2925],{"slug":2781,"name":2781,"fn":2782,"description":2783,"org":2784,"tags":2785,"stars":23,"repoUrl":24,"updatedAt":2796},"meteor-accounts","implement authentication in Meteor apps","Use when wiring up authentication in a Meteor 3 app. Triggers on accounts-password, accounts-base, OAuth (Google, Facebook, GitHub, Apple, Twitter, Meetup, Weibo), accounts-2fa, accounts-passwordless, ServiceConfiguration.configurations.upsertAsync, Accounts.createUserAsync, Accounts.setPasswordAsync, Accounts.forgotPassword, Accounts.resetPassword, Accounts.verifyEmail, useHttpOnlyCookies, clientStorage, Meteor.loginWithPasswordAnd2faCode, email verification. Use this skill when the user asks about signups, signins, or asks about token storage vs HttpOnly cookies.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2786,2789,2792,2793],{"name":2787,"slug":2788,"type":15},"Auth","auth",{"name":2790,"slug":2791,"type":15},"Authentication","authentication",{"name":9,"slug":8,"type":15},{"name":2794,"slug":2795,"type":15},"OAuth","oauth","2026-08-28T15:08:40.058032",{"slug":2798,"name":2798,"fn":2799,"description":2800,"org":2801,"tags":2802,"stars":23,"repoUrl":24,"updatedAt":2806},"meteor-blaze","build and debug Meteor Blaze interfaces","Use when building or debugging Blaze interfaces in Meteor 3: meteor create --blaze, Spacebars templates, Template helpers and events, lifecycle hooks, Tracker, ReactiveVar or ReactiveDict, template subscriptions, Promise helpers, #let async states, Template.dynamic, Blaze.render, and blaze-hot HMR with the Meteor bundler. Triggers on stale async helper results, lost reactivity after await, data-context lookup surprises, duplicate DOM integrations after HMR, Rspack full reloads, or raw HTML in triple braces. Use this skill when the user asks about reusable Blaze components, current Blaze packages, Rspack entry imports, or testing Blaze templates. For Meteor 2 to 3 upgrades, use migrate-to-meteor-3 instead.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2803,2804,2805],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"2026-08-28T15:09:37.601349",{"slug":2808,"name":2808,"fn":2809,"description":2810,"org":2811,"tags":2812,"stars":23,"repoUrl":24,"updatedAt":2817},"meteor-community-packages","manage Meteor community packages","Use when choosing, evaluating, adopting, configuring, or debugging a package from Meteor's documented community catalog, or moving from a community package to a promoted core package such as roles. Triggers on community package recommendations, Atmosphere vs npm selection, Packosphere maintenance checks, jam:* helpers, Meteor.publish.once, Meteor.publish.stream, meteor-rpc, Wormhole, cluster, and mail-preview. Use this skill when the user asks which maintained package fits or how its documented integration works. Route Meteor 2-to-3 package failures to migrate-to-meteor-3 and underlying core API design to its owning skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2813,2816],{"name":2814,"slug":2815,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},"2026-08-28T15:08:45.28079",{"slug":2819,"name":2819,"fn":2820,"description":2821,"org":2822,"tags":2823,"stars":23,"repoUrl":24,"updatedAt":2831},"meteor-debugging","diagnose failures in Meteor 3 applications","Use when diagnosing an unexplained failure in a Meteor 3 application before the failing layer or fix is known. Triggers on server crashes, client-only errors, stuck subscriptions, DDP or WebSocket disconnects, Minimongo\u002Fserver data mismatches, hanging or flaky tests, slow builds, --inspect, console.log, .only, Playwright traces, or requests to debug a Meteor app. Use this skill when evidence must distinguish Meteor tool, server, client, data, test, browser, mobile, or production boundaries. For test setup and authoring use meteor-testing; after confirming a domain cause, hand the repair to the owning skill.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2824,2827,2828],{"name":2825,"slug":2826,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":2829,"slug":2830,"type":15},"WebSockets","websockets","2026-08-28T15:08:40.430401",{"slug":2833,"name":2833,"fn":2834,"description":2835,"org":2836,"tags":2837,"stars":23,"repoUrl":24,"updatedAt":2848},"meteor-deployment","deploy Meteor 3 applications","Use when deploying a Meteor 3 application. Triggers on meteor build, meteor deploy, Galaxy Push to Deploy, Galaxy Mode, Repository Mode, DEPLOY_HOSTNAME, Docker, Kubernetes, settings.json, METEOR_SETTINGS, MONGO_URL, MONGO_OPLOG_URL, ROOT_URL, PORT, HTTP_FORWARDED_COUNT, NODE_OPTIONS, health checks, pre-deploy commands, hot code push, --architecture os.linux.x86_64, --server-only, or a deployed Node.js version mismatch. Use this skill when the user asks about shipping the app, asks about production config, or asks about containerizing.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2838,2841,2844,2847],{"name":2839,"slug":2840,"type":15},"Deployment","deployment",{"name":2842,"slug":2843,"type":15},"Docker","docker",{"name":2845,"slug":2846,"type":15},"Kubernetes","kubernetes",{"name":9,"slug":8,"type":15},"2026-08-28T15:08:44.881769",{"slug":2850,"name":2850,"fn":2851,"description":2852,"org":2853,"tags":2854,"stars":23,"repoUrl":24,"updatedAt":2862},"meteor-methods","author and debug Meteor methods","Use when authoring or debugging Meteor methods (Meteor.methods, Meteor.call, Meteor.callAsync). Triggers on argument validation with check(), optimistic UI stubs, latency compensation, Meteor.Error handling, and DDPRateLimiter. Use this skill when the user asks about server-side mutation, asks about rate limiting RPC, or asks about wrapping a method with auth checks.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2855,2858,2861],{"name":2856,"slug":2857,"type":15},"API Development","api-development",{"name":2859,"slug":2860,"type":15},"Backend","backend",{"name":9,"slug":8,"type":15},"2026-08-28T15:09:38.691128",{"slug":2451,"name":2451,"fn":2864,"description":2865,"org":2866,"tags":2867,"stars":23,"repoUrl":24,"updatedAt":2875},"configure Meteor 3 modern build stacks","Use when configuring or tuning the Meteor 3 modern build stack: SWC transpiler, SWC-based minifier, modern @parcel\u002Fwatcher, web-arch skipping in development, .meteorignore, and the Rspack bundler integration via the rspack Atmosphere package. Triggers on package.json \"meteor\": { \"modern\": true }, .swcrc, swc.config.js, [Transpiler] Used Babel Fallback logs, rspack.config.js, rspack.config.ts, defineConfig from @meteorjs\u002Frspack, Meteor.compileWith* helpers, Meteor.extendConfig, Meteor.extendSwcConfig vs Meteor.replaceSwcConfig, Meteor.splitVendorChunk, Meteor.persistDevFiles, Meteor.disablePlugins, Meteor.enablePortableBuild, HtmlRspackPlugin customization, RSPACK_DEVSERVER_PORT, TOOL_NODE_FLAGS for OOM, modern\u002Flegacy archs. Use this skill when the user asks about enabling the modern build stack, asks about SWC vs Babel in Meteor, asks about Rspack integration setup, or asks about customizing rspack.config.js. For converting an existing app's code to be Rspack-compatible, use migrate-to-rspack instead.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2868,2871,2872],{"name":2869,"slug":2870,"type":15},"Build","build",{"name":9,"slug":8,"type":15},{"name":2873,"slug":2874,"type":15},"Performance","performance","2026-08-28T15:09:42.877439",{"slug":2877,"name":2877,"fn":2878,"description":2879,"org":2880,"tags":2881,"stars":23,"repoUrl":24,"updatedAt":2890},"meteor-mongo-minimongo","author and debug Meteor MongoDB queries","Use when authoring or debugging Mongo queries in Meteor 3. Triggers on Mongo.Collection, find\u002FfindOne, server async vs client Minimongo sync, oplog vs change streams, indexes, selectors, modifiers, projections. Use this skill when the user asks about Mongo on the server or asks about Minimongo on the client.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2882,2885,2886,2887],{"name":2883,"slug":2884,"type":15},"Database","database",{"name":2825,"slug":2826,"type":15},{"name":9,"slug":8,"type":15},{"name":2888,"slug":2889,"type":15},"MongoDB","mongodb","2026-08-28T15:08:44.473981",{"slug":2892,"name":2892,"fn":2893,"description":2894,"org":2895,"tags":2896,"stars":23,"repoUrl":24,"updatedAt":2902},"meteor-pubsub","author and debug Meteor publications","Use when authoring or debugging Meteor publications and subscriptions (Meteor.publish, Meteor.subscribe). Triggers on publication strategies (SERVER_MERGE, NO_MERGE, NO_MERGE_NO_HISTORY), the low-level publish API (added\u002Fchanged\u002Fremoved), cursor authorization, reactive joins, leaked documents. Use this skill when the user asks about pub\u002Fsub or asks about reactive data fetching.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2897,2898,2899],{"name":2859,"slug":2860,"type":15},{"name":9,"slug":8,"type":15},{"name":2900,"slug":2901,"type":15},"Real-time","real-time","2026-08-28T15:09:37.97396",{"slug":4,"name":4,"fn":5,"description":6,"org":2904,"tags":2905,"stars":23,"repoUrl":24,"updatedAt":25},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2906,2907,2908,2909],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":13,"slug":14,"type":15},{"name":18,"slug":19,"type":15},{"slug":2911,"name":2911,"fn":2912,"description":2913,"org":2914,"tags":2915,"stars":23,"repoUrl":24,"updatedAt":2924},"meteor-security","audit and harden Meteor 3 applications","Use when auditing or hardening a Meteor 3 application. Triggers on missing check() on method arguments, missing this.userId guards on publications, browser-policy CSP, DDPRateLimiter rules, oauth-encryption via Accounts.config oauthSecretKey, audit-argument-checks, allow\u002Fdeny legacy patterns, BrowserPolicy.content.disallowInlineScripts, BrowserPolicy.framing.disallow. Use this skill when the user asks about hardening, asks about a security review, or asks about CSP for a third-party script (Stripe, Google Maps, fonts).\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2916,2917,2920,2921],{"name":2787,"slug":2788,"type":15},{"name":2918,"slug":2919,"type":15},"Code Analysis","code-analysis",{"name":9,"slug":8,"type":15},{"name":2922,"slug":2923,"type":15},"Security","security","2026-08-28T15:09:32.604319",{"slug":2926,"name":2926,"fn":2927,"description":2928,"org":2929,"tags":2930,"stars":23,"repoUrl":24,"updatedAt":2938},"meteor-testing","write and repair Meteor test harnesses","Use when setting up, designing, writing, or repairing tests and test harnesses in a Meteor 3 app. Triggers on meteortesting:mocha, --driver-package, TEST_WATCH, TEST_BROWSER_DRIVER, MOCHA_GREP, meteor.testModule, focused tests, .only, Meteor.server.method_handlers, Meteor.server.publish_handlers, DDP.connect, --full-app integration mode, sinon, async test signatures, Playwright\u002FCypress E2E. Use this skill when the user asks about test runners, asks about testing publications, or asks about Jest vs Mocha in Meteor. For a failing, hanging, or flaky test whose failing layer or root cause is unknown, use meteor-debugging before changing the test or app.\n",{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2931,2932,2935],{"name":9,"slug":8,"type":15},{"name":2933,"slug":2934,"type":15},"QA","qa",{"name":2936,"slug":2937,"type":15},"Testing","testing","2026-08-28T15:09:38.330724",{"items":2940,"total":1598},[2941,2948,2954,2959,2965,2972,2978],{"slug":2781,"name":2781,"fn":2782,"description":2783,"org":2942,"tags":2943,"stars":23,"repoUrl":24,"updatedAt":2796},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2944,2945,2946,2947],{"name":2787,"slug":2788,"type":15},{"name":2790,"slug":2791,"type":15},{"name":9,"slug":8,"type":15},{"name":2794,"slug":2795,"type":15},{"slug":2798,"name":2798,"fn":2799,"description":2800,"org":2949,"tags":2950,"stars":23,"repoUrl":24,"updatedAt":2806},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2951,2952,2953],{"name":21,"slug":22,"type":15},{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},{"slug":2808,"name":2808,"fn":2809,"description":2810,"org":2955,"tags":2956,"stars":23,"repoUrl":24,"updatedAt":2817},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2957,2958],{"name":2814,"slug":2815,"type":15},{"name":9,"slug":8,"type":15},{"slug":2819,"name":2819,"fn":2820,"description":2821,"org":2960,"tags":2961,"stars":23,"repoUrl":24,"updatedAt":2831},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2962,2963,2964],{"name":2825,"slug":2826,"type":15},{"name":9,"slug":8,"type":15},{"name":2829,"slug":2830,"type":15},{"slug":2833,"name":2833,"fn":2834,"description":2835,"org":2966,"tags":2967,"stars":23,"repoUrl":24,"updatedAt":2848},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2968,2969,2970,2971],{"name":2839,"slug":2840,"type":15},{"name":2842,"slug":2843,"type":15},{"name":2845,"slug":2846,"type":15},{"name":9,"slug":8,"type":15},{"slug":2850,"name":2850,"fn":2851,"description":2852,"org":2973,"tags":2974,"stars":23,"repoUrl":24,"updatedAt":2862},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2975,2976,2977],{"name":2856,"slug":2857,"type":15},{"name":2859,"slug":2860,"type":15},{"name":9,"slug":8,"type":15},{"slug":2451,"name":2451,"fn":2864,"description":2865,"org":2979,"tags":2980,"stars":23,"repoUrl":24,"updatedAt":2875},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2981,2982,2983],{"name":2869,"slug":2870,"type":15},{"name":9,"slug":8,"type":15},{"name":2873,"slug":2874,"type":15}]