[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-meteor-meteor-blaze":3,"mdc-x61jc3-key":36,"related-repo-meteor-meteor-blaze":2380,"related-org-meteor-meteor-blaze":2474},{"slug":4,"name":4,"fn":5,"description":6,"org":7,"tags":11,"stars":20,"repoUrl":21,"updatedAt":22,"license":23,"forks":24,"topics":25,"repo":31,"sourceUrl":34,"mdContent":35},"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},"meteor","Meteor","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmeteor.png",[12,14,17],{"name":9,"slug":8,"type":13},"tag",{"name":15,"slug":16,"type":13},"Web Development","web-development",{"name":18,"slug":19,"type":13},"Frontend","frontend",4,"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills","2026-08-28T15:09:37.601349","MIT",0,[26,27,28,29,8,30],"agent-skills","ai-agents","claude-code","codex","meteorjs",{"repoUrl":21,"stars":20,"forks":24,"topics":32,"description":33},[26,27,28,29,8,30],"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-blaze","---\nname: meteor-blaze\ndescription: >\n  Use when building or debugging Blaze interfaces in Meteor 3: meteor create\n  --blaze, Spacebars templates, Template helpers and events, lifecycle hooks,\n  Tracker, ReactiveVar or ReactiveDict, template subscriptions, Promise\n  helpers, #let async states, Template.dynamic, Blaze.render, and blaze-hot\n  HMR with the Meteor bundler. Triggers on stale async helper results, lost\n  reactivity after await, data-context lookup surprises, duplicate DOM\n  integrations after HMR, Rspack full reloads, or raw\n  HTML in triple braces. Use this skill when the user asks about reusable Blaze\n  components, current Blaze packages, Rspack entry imports, or testing Blaze\n  templates. For Meteor 2 to 3 upgrades, use migrate-to-meteor-3 instead.\nmetadata:\n  author: meteor\n  kind: knowledge\n  meteor: \">=3.0\"\n  area: data\n  tagline: \"Build and debug Meteor 3 Blaze interfaces (Spacebars, Tracker state, async helpers, lifecycle, bundler-specific HMR, and components).\"\n  bundle: [\"blaze\"]\n  docs_synced_at: \"2026-08-25\"\nlicense: MIT\n---\n\n# Blaze interfaces for Meteor 3\n\nBlaze compiles Spacebars templates into JavaScript and updates small View\nregions when their reactive dependencies invalidate. Keep state, subscriptions,\nDOM effects, and async work owned by a template instance. Use public\n`Template`, `Blaze`, `Spacebars`, and Tracker APIs in application code.\n\n## Decision flow\n\n1. For a new app, run `meteor create --blaze \u003Cname>`. Inspect the generated\n   `package.json`, `.meteor\u002Fpackages`, client entry, and `rspack.config.js`\n   before changing packages or build settings.\n2. Import each template's `.html` from the JavaScript module that registers its\n   helpers, events, and lifecycle hooks. Import that module from the client\n   entry graph.\n3. Keep synchronous Minimongo reads in ordinary helpers. If a helper returns a\n   Promise, render explicit pending, rejected, and resolved states.\n4. Put `ReactiveVar`, `ReactiveDict`, `this.autorun`, and `this.subscribe` on\n   the template instance. Put DOM initialization in `onRendered` and undo\n   external effects in `onDestroyed`.\n5. Pass named data and callbacks into reusable child templates. Keep\n   publication and mutation authority on the server.\n6. Identify the bundler before diagnosing refresh behavior. `blaze-hot` can\n   replace templates in the Meteor-bundler graph; Rspack currently performs a\n   full live reload for Blaze. Route general build, migration, database, or\n   test-runner work to the owning skill.\n\n## Current scaffold\n\n```bash\nmeteor create --blaze my-app\ncd my-app\nmeteor\n```\n\nMeteor 3.4+ creates Blaze apps with Rspack by default. Earlier Meteor 3\nreleases may use the Meteor bundler. The current scaffold declares explicit\nclient and server `meteor.mainModule` entries, imports `.html` from the client\nentry, enables the modern build stack, and includes `blaze-html-templates`,\n`tracker`, `reactive-var`, `hot-module-replacement`, `blaze-hot`, and `rspack`.\nTreat the generated files for the selected Meteor release as the baseline.\nThose packages do not enable Blaze HMR in the Rspack graph. Blaze edits there\ntrigger a fast full page reload and reset page-local state. `blaze-hot`\nreplacement behavior applies when the Meteor bundler owns the module.\n\nDo not infer the installed Blaze runtime from the release name alone. Inspect\n`.meteor\u002Fversions`, then use the\n[Blaze history](https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fblaze\u002Fblob\u002Fmaster\u002FHISTORY.md) for\nfeature floors and compatibility changes.\n\n## Component scaffold\n\n```html\n\u003Ctemplate name=\"taskList\">\n  \u003Clabel>\n    \u003Cinput type=\"checkbox\" class=\"js-show-done\">\n    Show completed\n  \u003C\u002Flabel>\n\n  {{#if Template.subscriptionsReady}}\n    {{#each task in tasks}}\n      {{> taskRow task=task}}\n    {{else}}\n      \u003Cp>No tasks.\u003C\u002Fp>\n    {{\u002Feach}}\n  {{else}}\n    \u003Cp>Loading...\u003C\u002Fp>\n  {{\u002Fif}}\n\u003C\u002Ftemplate>\n```\n\n```javascript\nimport { Template } from \"meteor\u002Ftemplating\";\nimport { ReactiveVar } from \"meteor\u002Freactive-var\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\nimport \".\u002Ftask-list.html\";\n\nTemplate.taskList.onCreated(function () {\n  this.showDone = new ReactiveVar(false);\n  this.autorun(() => {\n    this.subscribe(\"tasks.list\", { showDone: this.showDone.get() });\n  });\n});\n\nTemplate.taskList.helpers({\n  tasks() {\n    const showDone = Template.instance().showDone.get();\n    return Tasks.find(showDone ? {} : { done: false }, {\n      sort: { createdAt: -1 },\n    });\n  },\n});\n\nTemplate.taskList.events({\n  \"change .js-show-done\"(event, instance) {\n    instance.showDone.set(event.currentTarget.checked);\n  },\n});\n```\n\n`this.autorun` and `this.subscribe` stop when the instance is destroyed. A\ncursor returned from a synchronous helper remains live through Minimongo.\nAuthorization and field projection still belong in the publication.\n\n## Async helpers\n\nUse `#let` when loading, rejection, and empty results must be distinct:\n\n```html\n{{#let profile=loadProfile}}\n  {{#if @pending \"profile\"}}\u003Cp>Loading...\u003C\u002Fp>{{\u002Fif}}\n  {{#if @rejected \"profile\"}}\u003Cp>Could not load profile.\u003C\u002Fp>{{\u002Fif}}\n  {{#if @resolved \"profile\"}}\n    {{> profileCard profile=profile}}\n  {{\u002Fif}}\n{{\u002Flet}}\n```\n\nSpacebars stores the latest resolved value, not necessarily the result of the\nlatest Promise. If reactive input can launch overlapping requests, use an\nabort signal, generation token, or serialized queue. Do not assume `#let`\norders results. See `references\u002Fspacebars-and-async.md`.\n\n## Lifecycle ownership\n\n| Resource | Create | Destroy |\n|----------|--------|---------|\n| `ReactiveVar` or `ReactiveDict` | `onCreated` | No manual disposal |\n| Reactive work | `this.autorun` | Automatic with the instance |\n| Subscription | `this.subscribe` | Automatic with the instance |\n| DOM widget | `onRendered`, often after `Tracker.afterFlush` | Widget-specific teardown in `onDestroyed` |\n| Window, document, timer, observer | Lifecycle callback | Explicit remove, clear, disconnect, or stop in `onDestroyed` |\n| Programmatic Blaze View | `Blaze.render` or `Blaze.renderWithData` | `Blaze.remove(view)` |\n\nRead `references\u002Flifecycle-and-components.md` for data-context rules,\ncallbacks, dynamic templates, DOM scoping, and cleanup patterns.\n\n## Routing boundaries\n\n| Request | Route |\n|---------|-------|\n| Fresh Blaze UI, Spacebars, template lifecycle, async rendering | This skill |\n| General Rspack or SWC setup and configuration helpers | `meteor-modern-build-stack` |\n| Convert an existing app to Rspack | `migrate-to-rspack` |\n| Upgrade Blaze code from Meteor 2 to Meteor 3 | `migrate-to-meteor-3` |\n| Publication design or subscription authorization | `meteor-pubsub` |\n| Mongo and Minimongo API decisions | `meteor-mongo-minimongo` |\n| Mocha driver, browser runner, or E2E setup | `meteor-testing` |\n| CSP, sanitization review, or broader hardening | `meteor-security` |\n\nUse `references\u002Fbuild-hmr-and-testing.md` only for Blaze-specific entry\nimports, HMR ownership, and programmatic template tests.\n\n## Anti-patterns\n\n- Return async Minimongo values from every helper. Prefer synchronous client\n  reads unless the flow is already async or shared with the server.\n- Read reactive data only after `await` without restoring the captured Tracker\n  computation.\n- Treat `{{#each ...}}{{else}}` as a loading indicator. The `else` branch also\n  covers rejection and a resolved empty sequence.\n- Pass implicit inherited contexts through reusable templates. Pass named data.\n- Use global `$()` or `document.querySelector` for component DOM. Scope lookup\n  to the template instance.\n- Insert user-controlled content through triple braces or\n  `Spacebars.SafeString` without trusted sanitization.\n- Remove DOM nodes created by `Blaze.render` without calling `Blaze.remove`.\n- Rely on private or removed UI-era APIs such as `UI.body`,\n  `Template.__define__`, `Template.__body__`, `Spacebars.TemplateWith`, or\n  `Blaze.InOuterTemplateScope`.\n\n## Authoritative resources\n\n- [Meteor Blaze tutorial](https:\u002F\u002Fdocs.meteor.com\u002Ftutorials\u002Fblaze\u002F)\n- [Blaze guide](https:\u002F\u002Fwww.blazejs.org\u002Fguide\u002Fintroduction.html)\n- [Spacebars API](https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Fspacebars)\n- [Templates API](https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Ftemplates.html)\n- [Blaze programmatic API](https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Fblaze.html)\n- [`meteor\u002Fblaze` source and tests](https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fblaze)\n- `references\u002Fspacebars-and-async.md`\n- `references\u002Flifecycle-and-components.md`\n- `references\u002Fbuild-hmr-and-testing.md`\n- `references\u002Feval-cases.md`\n",{"data":37,"body":46},{"name":4,"description":6,"metadata":38,"license":23},{"author":8,"kind":39,"meteor":40,"area":41,"tagline":42,"bundle":43,"docs_synced_at":45},"knowledge",">=3.0","data","Build and debug Meteor 3 Blaze interfaces (Spacebars, Tracker state, async helpers, lifecycle, bundler-specific HMR, and components).",[44],"blaze","2026-08-25",{"type":47,"children":48},"root",[49,58,88,95,223,229,290,360,384,390,706,1550,1567,1573,1586,1714,1733,1739,1934,1947,1953,2107,2119,2125,2266,2272,2374],{"type":50,"tag":51,"props":52,"children":54},"element","h1",{"id":53},"blaze-interfaces-for-meteor-3",[55],{"type":56,"value":57},"text","Blaze interfaces for Meteor 3",{"type":50,"tag":59,"props":60,"children":61},"p",{},[62,64,71,73,79,80,86],{"type":56,"value":63},"Blaze compiles Spacebars templates into JavaScript and updates small View\nregions when their reactive dependencies invalidate. Keep state, subscriptions,\nDOM effects, and async work owned by a template instance. Use public\n",{"type":50,"tag":65,"props":66,"children":68},"code",{"className":67},[],[69],{"type":56,"value":70},"Template",{"type":56,"value":72},", ",{"type":50,"tag":65,"props":74,"children":76},{"className":75},[],[77],{"type":56,"value":78},"Blaze",{"type":56,"value":72},{"type":50,"tag":65,"props":81,"children":83},{"className":82},[],[84],{"type":56,"value":85},"Spacebars",{"type":56,"value":87},", and Tracker APIs in application code.",{"type":50,"tag":89,"props":90,"children":92},"h2",{"id":91},"decision-flow",[93],{"type":56,"value":94},"Decision flow",{"type":50,"tag":96,"props":97,"children":98},"ol",{},[99,136,149,154,205,210],{"type":50,"tag":100,"props":101,"children":102},"li",{},[103,105,111,113,119,120,126,128,134],{"type":56,"value":104},"For a new app, run ",{"type":50,"tag":65,"props":106,"children":108},{"className":107},[],[109],{"type":56,"value":110},"meteor create --blaze \u003Cname>",{"type":56,"value":112},". Inspect the generated\n",{"type":50,"tag":65,"props":114,"children":116},{"className":115},[],[117],{"type":56,"value":118},"package.json",{"type":56,"value":72},{"type":50,"tag":65,"props":121,"children":123},{"className":122},[],[124],{"type":56,"value":125},".meteor\u002Fpackages",{"type":56,"value":127},", client entry, and ",{"type":50,"tag":65,"props":129,"children":131},{"className":130},[],[132],{"type":56,"value":133},"rspack.config.js",{"type":56,"value":135},"\nbefore changing packages or build settings.",{"type":50,"tag":100,"props":137,"children":138},{},[139,141,147],{"type":56,"value":140},"Import each template's ",{"type":50,"tag":65,"props":142,"children":144},{"className":143},[],[145],{"type":56,"value":146},".html",{"type":56,"value":148}," from the JavaScript module that registers its\nhelpers, events, and lifecycle hooks. Import that module from the client\nentry graph.",{"type":50,"tag":100,"props":150,"children":151},{},[152],{"type":56,"value":153},"Keep synchronous Minimongo reads in ordinary helpers. If a helper returns a\nPromise, render explicit pending, rejected, and resolved states.",{"type":50,"tag":100,"props":155,"children":156},{},[157,159,165,166,172,173,179,181,187,189,195,197,203],{"type":56,"value":158},"Put ",{"type":50,"tag":65,"props":160,"children":162},{"className":161},[],[163],{"type":56,"value":164},"ReactiveVar",{"type":56,"value":72},{"type":50,"tag":65,"props":167,"children":169},{"className":168},[],[170],{"type":56,"value":171},"ReactiveDict",{"type":56,"value":72},{"type":50,"tag":65,"props":174,"children":176},{"className":175},[],[177],{"type":56,"value":178},"this.autorun",{"type":56,"value":180},", and ",{"type":50,"tag":65,"props":182,"children":184},{"className":183},[],[185],{"type":56,"value":186},"this.subscribe",{"type":56,"value":188}," on\nthe template instance. Put DOM initialization in ",{"type":50,"tag":65,"props":190,"children":192},{"className":191},[],[193],{"type":56,"value":194},"onRendered",{"type":56,"value":196}," and undo\nexternal effects in ",{"type":50,"tag":65,"props":198,"children":200},{"className":199},[],[201],{"type":56,"value":202},"onDestroyed",{"type":56,"value":204},".",{"type":50,"tag":100,"props":206,"children":207},{},[208],{"type":56,"value":209},"Pass named data and callbacks into reusable child templates. Keep\npublication and mutation authority on the server.",{"type":50,"tag":100,"props":211,"children":212},{},[213,215,221],{"type":56,"value":214},"Identify the bundler before diagnosing refresh behavior. ",{"type":50,"tag":65,"props":216,"children":218},{"className":217},[],[219],{"type":56,"value":220},"blaze-hot",{"type":56,"value":222}," can\nreplace templates in the Meteor-bundler graph; Rspack currently performs a\nfull live reload for Blaze. Route general build, migration, database, or\ntest-runner work to the owning skill.",{"type":50,"tag":89,"props":224,"children":226},{"id":225},"current-scaffold",[227],{"type":56,"value":228},"Current scaffold",{"type":50,"tag":230,"props":231,"children":236},"pre",{"className":232,"code":233,"language":234,"meta":235,"style":235},"language-bash shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","meteor create --blaze my-app\ncd my-app\nmeteor\n","bash","",[237],{"type":50,"tag":65,"props":238,"children":239},{"__ignoreMap":235},[240,267,281],{"type":50,"tag":241,"props":242,"children":245},"span",{"class":243,"line":244},"line",1,[246,251,257,262],{"type":50,"tag":241,"props":247,"children":249},{"style":248},"--shiki-light:#E2931D;--shiki-default:#FFCB6B;--shiki-dark:#FFCB6B",[250],{"type":56,"value":8},{"type":50,"tag":241,"props":252,"children":254},{"style":253},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[255],{"type":56,"value":256}," create",{"type":50,"tag":241,"props":258,"children":259},{"style":253},[260],{"type":56,"value":261}," --blaze",{"type":50,"tag":241,"props":263,"children":264},{"style":253},[265],{"type":56,"value":266}," my-app\n",{"type":50,"tag":241,"props":268,"children":270},{"class":243,"line":269},2,[271,277],{"type":50,"tag":241,"props":272,"children":274},{"style":273},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[275],{"type":56,"value":276},"cd",{"type":50,"tag":241,"props":278,"children":279},{"style":253},[280],{"type":56,"value":266},{"type":50,"tag":241,"props":282,"children":284},{"class":243,"line":283},3,[285],{"type":50,"tag":241,"props":286,"children":287},{"style":248},[288],{"type":56,"value":289},"meteor\n",{"type":50,"tag":59,"props":291,"children":292},{},[293,295,301,303,308,310,316,318,324,325,331,332,338,339,344,345,351,353,358],{"type":56,"value":294},"Meteor 3.4+ creates Blaze apps with Rspack by default. Earlier Meteor 3\nreleases may use the Meteor bundler. The current scaffold declares explicit\nclient and server ",{"type":50,"tag":65,"props":296,"children":298},{"className":297},[],[299],{"type":56,"value":300},"meteor.mainModule",{"type":56,"value":302}," entries, imports ",{"type":50,"tag":65,"props":304,"children":306},{"className":305},[],[307],{"type":56,"value":146},{"type":56,"value":309}," from the client\nentry, enables the modern build stack, and includes ",{"type":50,"tag":65,"props":311,"children":313},{"className":312},[],[314],{"type":56,"value":315},"blaze-html-templates",{"type":56,"value":317},",\n",{"type":50,"tag":65,"props":319,"children":321},{"className":320},[],[322],{"type":56,"value":323},"tracker",{"type":56,"value":72},{"type":50,"tag":65,"props":326,"children":328},{"className":327},[],[329],{"type":56,"value":330},"reactive-var",{"type":56,"value":72},{"type":50,"tag":65,"props":333,"children":335},{"className":334},[],[336],{"type":56,"value":337},"hot-module-replacement",{"type":56,"value":72},{"type":50,"tag":65,"props":340,"children":342},{"className":341},[],[343],{"type":56,"value":220},{"type":56,"value":180},{"type":50,"tag":65,"props":346,"children":348},{"className":347},[],[349],{"type":56,"value":350},"rspack",{"type":56,"value":352},".\nTreat the generated files for the selected Meteor release as the baseline.\nThose packages do not enable Blaze HMR in the Rspack graph. Blaze edits there\ntrigger a fast full page reload and reset page-local state. ",{"type":50,"tag":65,"props":354,"children":356},{"className":355},[],[357],{"type":56,"value":220},{"type":56,"value":359},"\nreplacement behavior applies when the Meteor bundler owns the module.",{"type":50,"tag":59,"props":361,"children":362},{},[363,365,371,373,382],{"type":56,"value":364},"Do not infer the installed Blaze runtime from the release name alone. Inspect\n",{"type":50,"tag":65,"props":366,"children":368},{"className":367},[],[369],{"type":56,"value":370},".meteor\u002Fversions",{"type":56,"value":372},", then use the\n",{"type":50,"tag":374,"props":375,"children":379},"a",{"href":376,"rel":377},"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fblaze\u002Fblob\u002Fmaster\u002FHISTORY.md",[378],"nofollow",[380],{"type":56,"value":381},"Blaze history",{"type":56,"value":383}," for\nfeature floors and compatibility changes.",{"type":50,"tag":89,"props":385,"children":387},{"id":386},"component-scaffold",[388],{"type":56,"value":389},"Component scaffold",{"type":50,"tag":230,"props":391,"children":395},{"className":392,"code":393,"language":394,"meta":235,"style":235},"language-html shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","\u003Ctemplate name=\"taskList\">\n  \u003Clabel>\n    \u003Cinput type=\"checkbox\" class=\"js-show-done\">\n    Show completed\n  \u003C\u002Flabel>\n\n  {{#if Template.subscriptionsReady}}\n    {{#each task in tasks}}\n      {{> taskRow task=task}}\n    {{else}}\n      \u003Cp>No tasks.\u003C\u002Fp>\n    {{\u002Feach}}\n  {{else}}\n    \u003Cp>Loading...\u003C\u002Fp>\n  {{\u002Fif}}\n\u003C\u002Ftemplate>\n","html",[396],{"type":50,"tag":65,"props":397,"children":398},{"__ignoreMap":235},[399,444,461,522,531,548,558,567,576,585,594,630,639,648,681,690],{"type":50,"tag":241,"props":400,"children":401},{"class":243,"line":244},[402,408,414,420,425,430,435,439],{"type":50,"tag":241,"props":403,"children":405},{"style":404},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[406],{"type":56,"value":407},"\u003C",{"type":50,"tag":241,"props":409,"children":411},{"style":410},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[412],{"type":56,"value":413},"template",{"type":50,"tag":241,"props":415,"children":417},{"style":416},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[418],{"type":56,"value":419}," name",{"type":50,"tag":241,"props":421,"children":422},{"style":404},[423],{"type":56,"value":424},"=",{"type":50,"tag":241,"props":426,"children":427},{"style":404},[428],{"type":56,"value":429},"\"",{"type":50,"tag":241,"props":431,"children":432},{"style":253},[433],{"type":56,"value":434},"taskList",{"type":50,"tag":241,"props":436,"children":437},{"style":404},[438],{"type":56,"value":429},{"type":50,"tag":241,"props":440,"children":441},{"style":404},[442],{"type":56,"value":443},">\n",{"type":50,"tag":241,"props":445,"children":446},{"class":243,"line":269},[447,452,457],{"type":50,"tag":241,"props":448,"children":449},{"style":404},[450],{"type":56,"value":451},"  \u003C",{"type":50,"tag":241,"props":453,"children":454},{"style":410},[455],{"type":56,"value":456},"label",{"type":50,"tag":241,"props":458,"children":459},{"style":404},[460],{"type":56,"value":443},{"type":50,"tag":241,"props":462,"children":463},{"class":243,"line":283},[464,469,474,479,483,487,492,496,501,505,509,514,518],{"type":50,"tag":241,"props":465,"children":466},{"style":404},[467],{"type":56,"value":468},"    \u003C",{"type":50,"tag":241,"props":470,"children":471},{"style":410},[472],{"type":56,"value":473},"input",{"type":50,"tag":241,"props":475,"children":476},{"style":416},[477],{"type":56,"value":478}," type",{"type":50,"tag":241,"props":480,"children":481},{"style":404},[482],{"type":56,"value":424},{"type":50,"tag":241,"props":484,"children":485},{"style":404},[486],{"type":56,"value":429},{"type":50,"tag":241,"props":488,"children":489},{"style":253},[490],{"type":56,"value":491},"checkbox",{"type":50,"tag":241,"props":493,"children":494},{"style":404},[495],{"type":56,"value":429},{"type":50,"tag":241,"props":497,"children":498},{"style":416},[499],{"type":56,"value":500}," class",{"type":50,"tag":241,"props":502,"children":503},{"style":404},[504],{"type":56,"value":424},{"type":50,"tag":241,"props":506,"children":507},{"style":404},[508],{"type":56,"value":429},{"type":50,"tag":241,"props":510,"children":511},{"style":253},[512],{"type":56,"value":513},"js-show-done",{"type":50,"tag":241,"props":515,"children":516},{"style":404},[517],{"type":56,"value":429},{"type":50,"tag":241,"props":519,"children":520},{"style":404},[521],{"type":56,"value":443},{"type":50,"tag":241,"props":523,"children":524},{"class":243,"line":20},[525],{"type":50,"tag":241,"props":526,"children":528},{"style":527},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[529],{"type":56,"value":530},"    Show completed\n",{"type":50,"tag":241,"props":532,"children":534},{"class":243,"line":533},5,[535,540,544],{"type":50,"tag":241,"props":536,"children":537},{"style":404},[538],{"type":56,"value":539},"  \u003C\u002F",{"type":50,"tag":241,"props":541,"children":542},{"style":410},[543],{"type":56,"value":456},{"type":50,"tag":241,"props":545,"children":546},{"style":404},[547],{"type":56,"value":443},{"type":50,"tag":241,"props":549,"children":551},{"class":243,"line":550},6,[552],{"type":50,"tag":241,"props":553,"children":555},{"emptyLinePlaceholder":554},true,[556],{"type":56,"value":557},"\n",{"type":50,"tag":241,"props":559,"children":561},{"class":243,"line":560},7,[562],{"type":50,"tag":241,"props":563,"children":564},{"style":527},[565],{"type":56,"value":566},"  {{#if Template.subscriptionsReady}}\n",{"type":50,"tag":241,"props":568,"children":570},{"class":243,"line":569},8,[571],{"type":50,"tag":241,"props":572,"children":573},{"style":527},[574],{"type":56,"value":575},"    {{#each task in tasks}}\n",{"type":50,"tag":241,"props":577,"children":579},{"class":243,"line":578},9,[580],{"type":50,"tag":241,"props":581,"children":582},{"style":527},[583],{"type":56,"value":584},"      {{> taskRow task=task}}\n",{"type":50,"tag":241,"props":586,"children":588},{"class":243,"line":587},10,[589],{"type":50,"tag":241,"props":590,"children":591},{"style":527},[592],{"type":56,"value":593},"    {{else}}\n",{"type":50,"tag":241,"props":595,"children":597},{"class":243,"line":596},11,[598,603,607,612,617,622,626],{"type":50,"tag":241,"props":599,"children":600},{"style":404},[601],{"type":56,"value":602},"      \u003C",{"type":50,"tag":241,"props":604,"children":605},{"style":410},[606],{"type":56,"value":59},{"type":50,"tag":241,"props":608,"children":609},{"style":404},[610],{"type":56,"value":611},">",{"type":50,"tag":241,"props":613,"children":614},{"style":527},[615],{"type":56,"value":616},"No tasks.",{"type":50,"tag":241,"props":618,"children":619},{"style":404},[620],{"type":56,"value":621},"\u003C\u002F",{"type":50,"tag":241,"props":623,"children":624},{"style":410},[625],{"type":56,"value":59},{"type":50,"tag":241,"props":627,"children":628},{"style":404},[629],{"type":56,"value":443},{"type":50,"tag":241,"props":631,"children":633},{"class":243,"line":632},12,[634],{"type":50,"tag":241,"props":635,"children":636},{"style":527},[637],{"type":56,"value":638},"    {{\u002Feach}}\n",{"type":50,"tag":241,"props":640,"children":642},{"class":243,"line":641},13,[643],{"type":50,"tag":241,"props":644,"children":645},{"style":527},[646],{"type":56,"value":647},"  {{else}}\n",{"type":50,"tag":241,"props":649,"children":651},{"class":243,"line":650},14,[652,656,660,664,669,673,677],{"type":50,"tag":241,"props":653,"children":654},{"style":404},[655],{"type":56,"value":468},{"type":50,"tag":241,"props":657,"children":658},{"style":410},[659],{"type":56,"value":59},{"type":50,"tag":241,"props":661,"children":662},{"style":404},[663],{"type":56,"value":611},{"type":50,"tag":241,"props":665,"children":666},{"style":527},[667],{"type":56,"value":668},"Loading...",{"type":50,"tag":241,"props":670,"children":671},{"style":404},[672],{"type":56,"value":621},{"type":50,"tag":241,"props":674,"children":675},{"style":410},[676],{"type":56,"value":59},{"type":50,"tag":241,"props":678,"children":679},{"style":404},[680],{"type":56,"value":443},{"type":50,"tag":241,"props":682,"children":684},{"class":243,"line":683},15,[685],{"type":50,"tag":241,"props":686,"children":687},{"style":527},[688],{"type":56,"value":689},"  {{\u002Fif}}\n",{"type":50,"tag":241,"props":691,"children":693},{"class":243,"line":692},16,[694,698,702],{"type":50,"tag":241,"props":695,"children":696},{"style":404},[697],{"type":56,"value":621},{"type":50,"tag":241,"props":699,"children":700},{"style":410},[701],{"type":56,"value":413},{"type":50,"tag":241,"props":703,"children":704},{"style":404},[705],{"type":56,"value":443},{"type":50,"tag":230,"props":707,"children":711},{"className":708,"code":709,"language":710,"meta":235,"style":235},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { Template } from \"meteor\u002Ftemplating\";\nimport { ReactiveVar } from \"meteor\u002Freactive-var\";\nimport { Tasks } from \"\u002Fimports\u002Fapi\u002Ftasks\";\nimport \".\u002Ftask-list.html\";\n\nTemplate.taskList.onCreated(function () {\n  this.showDone = new ReactiveVar(false);\n  this.autorun(() => {\n    this.subscribe(\"tasks.list\", { showDone: this.showDone.get() });\n  });\n});\n\nTemplate.taskList.helpers({\n  tasks() {\n    const showDone = Template.instance().showDone.get();\n    return Tasks.find(showDone ? {} : { done: false }, {\n      sort: { createdAt: -1 },\n    });\n  },\n});\n\nTemplate.taskList.events({\n  \"change .js-show-done\"(event, instance) {\n    instance.showDone.set(event.currentTarget.checked);\n  },\n});\n","javascript",[712],{"type":50,"tag":65,"props":713,"children":714},{"__ignoreMap":235},[715,763,804,845,869,876,920,966,996,1081,1097,1112,1119,1152,1168,1225,1296,1338,1355,1364,1380,1388,1421,1466,1526,1534],{"type":50,"tag":241,"props":716,"children":717},{"class":243,"line":244},[718,724,729,734,739,744,749,754,758],{"type":50,"tag":241,"props":719,"children":721},{"style":720},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[722],{"type":56,"value":723},"import",{"type":50,"tag":241,"props":725,"children":726},{"style":404},[727],{"type":56,"value":728}," {",{"type":50,"tag":241,"props":730,"children":731},{"style":527},[732],{"type":56,"value":733}," Template",{"type":50,"tag":241,"props":735,"children":736},{"style":404},[737],{"type":56,"value":738}," }",{"type":50,"tag":241,"props":740,"children":741},{"style":720},[742],{"type":56,"value":743}," from",{"type":50,"tag":241,"props":745,"children":746},{"style":404},[747],{"type":56,"value":748}," \"",{"type":50,"tag":241,"props":750,"children":751},{"style":253},[752],{"type":56,"value":753},"meteor\u002Ftemplating",{"type":50,"tag":241,"props":755,"children":756},{"style":404},[757],{"type":56,"value":429},{"type":50,"tag":241,"props":759,"children":760},{"style":404},[761],{"type":56,"value":762},";\n",{"type":50,"tag":241,"props":764,"children":765},{"class":243,"line":269},[766,770,774,779,783,787,791,796,800],{"type":50,"tag":241,"props":767,"children":768},{"style":720},[769],{"type":56,"value":723},{"type":50,"tag":241,"props":771,"children":772},{"style":404},[773],{"type":56,"value":728},{"type":50,"tag":241,"props":775,"children":776},{"style":527},[777],{"type":56,"value":778}," ReactiveVar",{"type":50,"tag":241,"props":780,"children":781},{"style":404},[782],{"type":56,"value":738},{"type":50,"tag":241,"props":784,"children":785},{"style":720},[786],{"type":56,"value":743},{"type":50,"tag":241,"props":788,"children":789},{"style":404},[790],{"type":56,"value":748},{"type":50,"tag":241,"props":792,"children":793},{"style":253},[794],{"type":56,"value":795},"meteor\u002Freactive-var",{"type":50,"tag":241,"props":797,"children":798},{"style":404},[799],{"type":56,"value":429},{"type":50,"tag":241,"props":801,"children":802},{"style":404},[803],{"type":56,"value":762},{"type":50,"tag":241,"props":805,"children":806},{"class":243,"line":283},[807,811,815,820,824,828,832,837,841],{"type":50,"tag":241,"props":808,"children":809},{"style":720},[810],{"type":56,"value":723},{"type":50,"tag":241,"props":812,"children":813},{"style":404},[814],{"type":56,"value":728},{"type":50,"tag":241,"props":816,"children":817},{"style":527},[818],{"type":56,"value":819}," Tasks",{"type":50,"tag":241,"props":821,"children":822},{"style":404},[823],{"type":56,"value":738},{"type":50,"tag":241,"props":825,"children":826},{"style":720},[827],{"type":56,"value":743},{"type":50,"tag":241,"props":829,"children":830},{"style":404},[831],{"type":56,"value":748},{"type":50,"tag":241,"props":833,"children":834},{"style":253},[835],{"type":56,"value":836},"\u002Fimports\u002Fapi\u002Ftasks",{"type":50,"tag":241,"props":838,"children":839},{"style":404},[840],{"type":56,"value":429},{"type":50,"tag":241,"props":842,"children":843},{"style":404},[844],{"type":56,"value":762},{"type":50,"tag":241,"props":846,"children":847},{"class":243,"line":20},[848,852,856,861,865],{"type":50,"tag":241,"props":849,"children":850},{"style":720},[851],{"type":56,"value":723},{"type":50,"tag":241,"props":853,"children":854},{"style":404},[855],{"type":56,"value":748},{"type":50,"tag":241,"props":857,"children":858},{"style":253},[859],{"type":56,"value":860},".\u002Ftask-list.html",{"type":50,"tag":241,"props":862,"children":863},{"style":404},[864],{"type":56,"value":429},{"type":50,"tag":241,"props":866,"children":867},{"style":404},[868],{"type":56,"value":762},{"type":50,"tag":241,"props":870,"children":871},{"class":243,"line":533},[872],{"type":50,"tag":241,"props":873,"children":874},{"emptyLinePlaceholder":554},[875],{"type":56,"value":557},{"type":50,"tag":241,"props":877,"children":878},{"class":243,"line":550},[879,883,887,891,895,900,905,910,915],{"type":50,"tag":241,"props":880,"children":881},{"style":527},[882],{"type":56,"value":70},{"type":50,"tag":241,"props":884,"children":885},{"style":404},[886],{"type":56,"value":204},{"type":50,"tag":241,"props":888,"children":889},{"style":527},[890],{"type":56,"value":434},{"type":50,"tag":241,"props":892,"children":893},{"style":404},[894],{"type":56,"value":204},{"type":50,"tag":241,"props":896,"children":897},{"style":273},[898],{"type":56,"value":899},"onCreated",{"type":50,"tag":241,"props":901,"children":902},{"style":527},[903],{"type":56,"value":904},"(",{"type":50,"tag":241,"props":906,"children":907},{"style":416},[908],{"type":56,"value":909},"function",{"type":50,"tag":241,"props":911,"children":912},{"style":404},[913],{"type":56,"value":914}," ()",{"type":50,"tag":241,"props":916,"children":917},{"style":404},[918],{"type":56,"value":919}," {\n",{"type":50,"tag":241,"props":921,"children":922},{"class":243,"line":560},[923,928,933,938,943,947,951,957,962],{"type":50,"tag":241,"props":924,"children":925},{"style":404},[926],{"type":56,"value":927},"  this.",{"type":50,"tag":241,"props":929,"children":930},{"style":527},[931],{"type":56,"value":932},"showDone",{"type":50,"tag":241,"props":934,"children":935},{"style":404},[936],{"type":56,"value":937}," =",{"type":50,"tag":241,"props":939,"children":940},{"style":404},[941],{"type":56,"value":942}," new",{"type":50,"tag":241,"props":944,"children":945},{"style":273},[946],{"type":56,"value":778},{"type":50,"tag":241,"props":948,"children":949},{"style":410},[950],{"type":56,"value":904},{"type":50,"tag":241,"props":952,"children":954},{"style":953},"--shiki-light:#FF5370;--shiki-default:#FF9CAC;--shiki-dark:#FF9CAC",[955],{"type":56,"value":956},"false",{"type":50,"tag":241,"props":958,"children":959},{"style":410},[960],{"type":56,"value":961},")",{"type":50,"tag":241,"props":963,"children":964},{"style":404},[965],{"type":56,"value":762},{"type":50,"tag":241,"props":967,"children":968},{"class":243,"line":569},[969,973,978,982,987,992],{"type":50,"tag":241,"props":970,"children":971},{"style":404},[972],{"type":56,"value":927},{"type":50,"tag":241,"props":974,"children":975},{"style":273},[976],{"type":56,"value":977},"autorun",{"type":50,"tag":241,"props":979,"children":980},{"style":410},[981],{"type":56,"value":904},{"type":50,"tag":241,"props":983,"children":984},{"style":404},[985],{"type":56,"value":986},"()",{"type":50,"tag":241,"props":988,"children":989},{"style":416},[990],{"type":56,"value":991}," =>",{"type":50,"tag":241,"props":993,"children":994},{"style":404},[995],{"type":56,"value":919},{"type":50,"tag":241,"props":997,"children":998},{"class":243,"line":578},[999,1004,1009,1013,1017,1022,1026,1031,1035,1040,1045,1050,1054,1058,1063,1068,1073,1077],{"type":50,"tag":241,"props":1000,"children":1001},{"style":404},[1002],{"type":56,"value":1003},"    this.",{"type":50,"tag":241,"props":1005,"children":1006},{"style":273},[1007],{"type":56,"value":1008},"subscribe",{"type":50,"tag":241,"props":1010,"children":1011},{"style":410},[1012],{"type":56,"value":904},{"type":50,"tag":241,"props":1014,"children":1015},{"style":404},[1016],{"type":56,"value":429},{"type":50,"tag":241,"props":1018,"children":1019},{"style":253},[1020],{"type":56,"value":1021},"tasks.list",{"type":50,"tag":241,"props":1023,"children":1024},{"style":404},[1025],{"type":56,"value":429},{"type":50,"tag":241,"props":1027,"children":1028},{"style":404},[1029],{"type":56,"value":1030},",",{"type":50,"tag":241,"props":1032,"children":1033},{"style":404},[1034],{"type":56,"value":728},{"type":50,"tag":241,"props":1036,"children":1037},{"style":410},[1038],{"type":56,"value":1039}," showDone",{"type":50,"tag":241,"props":1041,"children":1042},{"style":404},[1043],{"type":56,"value":1044},":",{"type":50,"tag":241,"props":1046,"children":1047},{"style":404},[1048],{"type":56,"value":1049}," this.",{"type":50,"tag":241,"props":1051,"children":1052},{"style":527},[1053],{"type":56,"value":932},{"type":50,"tag":241,"props":1055,"children":1056},{"style":404},[1057],{"type":56,"value":204},{"type":50,"tag":241,"props":1059,"children":1060},{"style":273},[1061],{"type":56,"value":1062},"get",{"type":50,"tag":241,"props":1064,"children":1065},{"style":410},[1066],{"type":56,"value":1067},"() ",{"type":50,"tag":241,"props":1069,"children":1070},{"style":404},[1071],{"type":56,"value":1072},"}",{"type":50,"tag":241,"props":1074,"children":1075},{"style":410},[1076],{"type":56,"value":961},{"type":50,"tag":241,"props":1078,"children":1079},{"style":404},[1080],{"type":56,"value":762},{"type":50,"tag":241,"props":1082,"children":1083},{"class":243,"line":587},[1084,1089,1093],{"type":50,"tag":241,"props":1085,"children":1086},{"style":404},[1087],{"type":56,"value":1088},"  }",{"type":50,"tag":241,"props":1090,"children":1091},{"style":410},[1092],{"type":56,"value":961},{"type":50,"tag":241,"props":1094,"children":1095},{"style":404},[1096],{"type":56,"value":762},{"type":50,"tag":241,"props":1098,"children":1099},{"class":243,"line":596},[1100,1104,1108],{"type":50,"tag":241,"props":1101,"children":1102},{"style":404},[1103],{"type":56,"value":1072},{"type":50,"tag":241,"props":1105,"children":1106},{"style":527},[1107],{"type":56,"value":961},{"type":50,"tag":241,"props":1109,"children":1110},{"style":404},[1111],{"type":56,"value":762},{"type":50,"tag":241,"props":1113,"children":1114},{"class":243,"line":632},[1115],{"type":50,"tag":241,"props":1116,"children":1117},{"emptyLinePlaceholder":554},[1118],{"type":56,"value":557},{"type":50,"tag":241,"props":1120,"children":1121},{"class":243,"line":641},[1122,1126,1130,1134,1138,1143,1147],{"type":50,"tag":241,"props":1123,"children":1124},{"style":527},[1125],{"type":56,"value":70},{"type":50,"tag":241,"props":1127,"children":1128},{"style":404},[1129],{"type":56,"value":204},{"type":50,"tag":241,"props":1131,"children":1132},{"style":527},[1133],{"type":56,"value":434},{"type":50,"tag":241,"props":1135,"children":1136},{"style":404},[1137],{"type":56,"value":204},{"type":50,"tag":241,"props":1139,"children":1140},{"style":273},[1141],{"type":56,"value":1142},"helpers",{"type":50,"tag":241,"props":1144,"children":1145},{"style":527},[1146],{"type":56,"value":904},{"type":50,"tag":241,"props":1148,"children":1149},{"style":404},[1150],{"type":56,"value":1151},"{\n",{"type":50,"tag":241,"props":1153,"children":1154},{"class":243,"line":650},[1155,1160,1164],{"type":50,"tag":241,"props":1156,"children":1157},{"style":410},[1158],{"type":56,"value":1159},"  tasks",{"type":50,"tag":241,"props":1161,"children":1162},{"style":404},[1163],{"type":56,"value":986},{"type":50,"tag":241,"props":1165,"children":1166},{"style":404},[1167],{"type":56,"value":919},{"type":50,"tag":241,"props":1169,"children":1170},{"class":243,"line":683},[1171,1176,1180,1184,1188,1192,1197,1201,1205,1209,1213,1217,1221],{"type":50,"tag":241,"props":1172,"children":1173},{"style":416},[1174],{"type":56,"value":1175},"    const",{"type":50,"tag":241,"props":1177,"children":1178},{"style":527},[1179],{"type":56,"value":1039},{"type":50,"tag":241,"props":1181,"children":1182},{"style":404},[1183],{"type":56,"value":937},{"type":50,"tag":241,"props":1185,"children":1186},{"style":527},[1187],{"type":56,"value":733},{"type":50,"tag":241,"props":1189,"children":1190},{"style":404},[1191],{"type":56,"value":204},{"type":50,"tag":241,"props":1193,"children":1194},{"style":273},[1195],{"type":56,"value":1196},"instance",{"type":50,"tag":241,"props":1198,"children":1199},{"style":410},[1200],{"type":56,"value":986},{"type":50,"tag":241,"props":1202,"children":1203},{"style":404},[1204],{"type":56,"value":204},{"type":50,"tag":241,"props":1206,"children":1207},{"style":527},[1208],{"type":56,"value":932},{"type":50,"tag":241,"props":1210,"children":1211},{"style":404},[1212],{"type":56,"value":204},{"type":50,"tag":241,"props":1214,"children":1215},{"style":273},[1216],{"type":56,"value":1062},{"type":50,"tag":241,"props":1218,"children":1219},{"style":410},[1220],{"type":56,"value":986},{"type":50,"tag":241,"props":1222,"children":1223},{"style":404},[1224],{"type":56,"value":762},{"type":50,"tag":241,"props":1226,"children":1227},{"class":243,"line":692},[1228,1233,1237,1241,1246,1250,1254,1259,1264,1269,1273,1278,1282,1287,1292],{"type":50,"tag":241,"props":1229,"children":1230},{"style":720},[1231],{"type":56,"value":1232},"    return",{"type":50,"tag":241,"props":1234,"children":1235},{"style":527},[1236],{"type":56,"value":819},{"type":50,"tag":241,"props":1238,"children":1239},{"style":404},[1240],{"type":56,"value":204},{"type":50,"tag":241,"props":1242,"children":1243},{"style":273},[1244],{"type":56,"value":1245},"find",{"type":50,"tag":241,"props":1247,"children":1248},{"style":410},[1249],{"type":56,"value":904},{"type":50,"tag":241,"props":1251,"children":1252},{"style":527},[1253],{"type":56,"value":932},{"type":50,"tag":241,"props":1255,"children":1256},{"style":404},[1257],{"type":56,"value":1258}," ?",{"type":50,"tag":241,"props":1260,"children":1261},{"style":404},[1262],{"type":56,"value":1263}," {}",{"type":50,"tag":241,"props":1265,"children":1266},{"style":404},[1267],{"type":56,"value":1268}," :",{"type":50,"tag":241,"props":1270,"children":1271},{"style":404},[1272],{"type":56,"value":728},{"type":50,"tag":241,"props":1274,"children":1275},{"style":410},[1276],{"type":56,"value":1277}," done",{"type":50,"tag":241,"props":1279,"children":1280},{"style":404},[1281],{"type":56,"value":1044},{"type":50,"tag":241,"props":1283,"children":1284},{"style":953},[1285],{"type":56,"value":1286}," false",{"type":50,"tag":241,"props":1288,"children":1289},{"style":404},[1290],{"type":56,"value":1291}," },",{"type":50,"tag":241,"props":1293,"children":1294},{"style":404},[1295],{"type":56,"value":919},{"type":50,"tag":241,"props":1297,"children":1299},{"class":243,"line":1298},17,[1300,1305,1309,1313,1318,1322,1327,1333],{"type":50,"tag":241,"props":1301,"children":1302},{"style":410},[1303],{"type":56,"value":1304},"      sort",{"type":50,"tag":241,"props":1306,"children":1307},{"style":404},[1308],{"type":56,"value":1044},{"type":50,"tag":241,"props":1310,"children":1311},{"style":404},[1312],{"type":56,"value":728},{"type":50,"tag":241,"props":1314,"children":1315},{"style":410},[1316],{"type":56,"value":1317}," createdAt",{"type":50,"tag":241,"props":1319,"children":1320},{"style":404},[1321],{"type":56,"value":1044},{"type":50,"tag":241,"props":1323,"children":1324},{"style":404},[1325],{"type":56,"value":1326}," -",{"type":50,"tag":241,"props":1328,"children":1330},{"style":1329},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[1331],{"type":56,"value":1332},"1",{"type":50,"tag":241,"props":1334,"children":1335},{"style":404},[1336],{"type":56,"value":1337}," },\n",{"type":50,"tag":241,"props":1339,"children":1341},{"class":243,"line":1340},18,[1342,1347,1351],{"type":50,"tag":241,"props":1343,"children":1344},{"style":404},[1345],{"type":56,"value":1346},"    }",{"type":50,"tag":241,"props":1348,"children":1349},{"style":410},[1350],{"type":56,"value":961},{"type":50,"tag":241,"props":1352,"children":1353},{"style":404},[1354],{"type":56,"value":762},{"type":50,"tag":241,"props":1356,"children":1358},{"class":243,"line":1357},19,[1359],{"type":50,"tag":241,"props":1360,"children":1361},{"style":404},[1362],{"type":56,"value":1363},"  },\n",{"type":50,"tag":241,"props":1365,"children":1367},{"class":243,"line":1366},20,[1368,1372,1376],{"type":50,"tag":241,"props":1369,"children":1370},{"style":404},[1371],{"type":56,"value":1072},{"type":50,"tag":241,"props":1373,"children":1374},{"style":527},[1375],{"type":56,"value":961},{"type":50,"tag":241,"props":1377,"children":1378},{"style":404},[1379],{"type":56,"value":762},{"type":50,"tag":241,"props":1381,"children":1383},{"class":243,"line":1382},21,[1384],{"type":50,"tag":241,"props":1385,"children":1386},{"emptyLinePlaceholder":554},[1387],{"type":56,"value":557},{"type":50,"tag":241,"props":1389,"children":1391},{"class":243,"line":1390},22,[1392,1396,1400,1404,1408,1413,1417],{"type":50,"tag":241,"props":1393,"children":1394},{"style":527},[1395],{"type":56,"value":70},{"type":50,"tag":241,"props":1397,"children":1398},{"style":404},[1399],{"type":56,"value":204},{"type":50,"tag":241,"props":1401,"children":1402},{"style":527},[1403],{"type":56,"value":434},{"type":50,"tag":241,"props":1405,"children":1406},{"style":404},[1407],{"type":56,"value":204},{"type":50,"tag":241,"props":1409,"children":1410},{"style":273},[1411],{"type":56,"value":1412},"events",{"type":50,"tag":241,"props":1414,"children":1415},{"style":527},[1416],{"type":56,"value":904},{"type":50,"tag":241,"props":1418,"children":1419},{"style":404},[1420],{"type":56,"value":1151},{"type":50,"tag":241,"props":1422,"children":1424},{"class":243,"line":1423},23,[1425,1430,1435,1439,1443,1449,1453,1458,1462],{"type":50,"tag":241,"props":1426,"children":1427},{"style":404},[1428],{"type":56,"value":1429},"  \"",{"type":50,"tag":241,"props":1431,"children":1432},{"style":253},[1433],{"type":56,"value":1434},"change .js-show-done",{"type":50,"tag":241,"props":1436,"children":1437},{"style":404},[1438],{"type":56,"value":429},{"type":50,"tag":241,"props":1440,"children":1441},{"style":404},[1442],{"type":56,"value":904},{"type":50,"tag":241,"props":1444,"children":1446},{"style":1445},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[1447],{"type":56,"value":1448},"event",{"type":50,"tag":241,"props":1450,"children":1451},{"style":404},[1452],{"type":56,"value":1030},{"type":50,"tag":241,"props":1454,"children":1455},{"style":1445},[1456],{"type":56,"value":1457}," instance",{"type":50,"tag":241,"props":1459,"children":1460},{"style":404},[1461],{"type":56,"value":961},{"type":50,"tag":241,"props":1463,"children":1464},{"style":404},[1465],{"type":56,"value":919},{"type":50,"tag":241,"props":1467,"children":1469},{"class":243,"line":1468},24,[1470,1475,1479,1483,1487,1492,1496,1500,1504,1509,1513,1518,1522],{"type":50,"tag":241,"props":1471,"children":1472},{"style":527},[1473],{"type":56,"value":1474},"    instance",{"type":50,"tag":241,"props":1476,"children":1477},{"style":404},[1478],{"type":56,"value":204},{"type":50,"tag":241,"props":1480,"children":1481},{"style":527},[1482],{"type":56,"value":932},{"type":50,"tag":241,"props":1484,"children":1485},{"style":404},[1486],{"type":56,"value":204},{"type":50,"tag":241,"props":1488,"children":1489},{"style":273},[1490],{"type":56,"value":1491},"set",{"type":50,"tag":241,"props":1493,"children":1494},{"style":410},[1495],{"type":56,"value":904},{"type":50,"tag":241,"props":1497,"children":1498},{"style":527},[1499],{"type":56,"value":1448},{"type":50,"tag":241,"props":1501,"children":1502},{"style":404},[1503],{"type":56,"value":204},{"type":50,"tag":241,"props":1505,"children":1506},{"style":527},[1507],{"type":56,"value":1508},"currentTarget",{"type":50,"tag":241,"props":1510,"children":1511},{"style":404},[1512],{"type":56,"value":204},{"type":50,"tag":241,"props":1514,"children":1515},{"style":527},[1516],{"type":56,"value":1517},"checked",{"type":50,"tag":241,"props":1519,"children":1520},{"style":410},[1521],{"type":56,"value":961},{"type":50,"tag":241,"props":1523,"children":1524},{"style":404},[1525],{"type":56,"value":762},{"type":50,"tag":241,"props":1527,"children":1529},{"class":243,"line":1528},25,[1530],{"type":50,"tag":241,"props":1531,"children":1532},{"style":404},[1533],{"type":56,"value":1363},{"type":50,"tag":241,"props":1535,"children":1537},{"class":243,"line":1536},26,[1538,1542,1546],{"type":50,"tag":241,"props":1539,"children":1540},{"style":404},[1541],{"type":56,"value":1072},{"type":50,"tag":241,"props":1543,"children":1544},{"style":527},[1545],{"type":56,"value":961},{"type":50,"tag":241,"props":1547,"children":1548},{"style":404},[1549],{"type":56,"value":762},{"type":50,"tag":59,"props":1551,"children":1552},{},[1553,1558,1560,1565],{"type":50,"tag":65,"props":1554,"children":1556},{"className":1555},[],[1557],{"type":56,"value":178},{"type":56,"value":1559}," and ",{"type":50,"tag":65,"props":1561,"children":1563},{"className":1562},[],[1564],{"type":56,"value":186},{"type":56,"value":1566}," stop when the instance is destroyed. A\ncursor returned from a synchronous helper remains live through Minimongo.\nAuthorization and field projection still belong in the publication.",{"type":50,"tag":89,"props":1568,"children":1570},{"id":1569},"async-helpers",[1571],{"type":56,"value":1572},"Async helpers",{"type":50,"tag":59,"props":1574,"children":1575},{},[1576,1578,1584],{"type":56,"value":1577},"Use ",{"type":50,"tag":65,"props":1579,"children":1581},{"className":1580},[],[1582],{"type":56,"value":1583},"#let",{"type":56,"value":1585}," when loading, rejection, and empty results must be distinct:",{"type":50,"tag":230,"props":1587,"children":1589},{"className":392,"code":1588,"language":394,"meta":235,"style":235},"{{#let profile=loadProfile}}\n  {{#if @pending \"profile\"}}\u003Cp>Loading...\u003C\u002Fp>{{\u002Fif}}\n  {{#if @rejected \"profile\"}}\u003Cp>Could not load profile.\u003C\u002Fp>{{\u002Fif}}\n  {{#if @resolved \"profile\"}}\n    {{> profileCard profile=profile}}\n  {{\u002Fif}}\n{{\u002Flet}}\n",[1590],{"type":50,"tag":65,"props":1591,"children":1592},{"__ignoreMap":235},[1593,1601,1642,1683,1691,1699,1706],{"type":50,"tag":241,"props":1594,"children":1595},{"class":243,"line":244},[1596],{"type":50,"tag":241,"props":1597,"children":1598},{"style":527},[1599],{"type":56,"value":1600},"{{#let profile=loadProfile}}\n",{"type":50,"tag":241,"props":1602,"children":1603},{"class":243,"line":269},[1604,1609,1613,1617,1621,1625,1629,1633,1637],{"type":50,"tag":241,"props":1605,"children":1606},{"style":527},[1607],{"type":56,"value":1608},"  {{#if @pending \"profile\"}}",{"type":50,"tag":241,"props":1610,"children":1611},{"style":404},[1612],{"type":56,"value":407},{"type":50,"tag":241,"props":1614,"children":1615},{"style":410},[1616],{"type":56,"value":59},{"type":50,"tag":241,"props":1618,"children":1619},{"style":404},[1620],{"type":56,"value":611},{"type":50,"tag":241,"props":1622,"children":1623},{"style":527},[1624],{"type":56,"value":668},{"type":50,"tag":241,"props":1626,"children":1627},{"style":404},[1628],{"type":56,"value":621},{"type":50,"tag":241,"props":1630,"children":1631},{"style":410},[1632],{"type":56,"value":59},{"type":50,"tag":241,"props":1634,"children":1635},{"style":404},[1636],{"type":56,"value":611},{"type":50,"tag":241,"props":1638,"children":1639},{"style":527},[1640],{"type":56,"value":1641},"{{\u002Fif}}\n",{"type":50,"tag":241,"props":1643,"children":1644},{"class":243,"line":283},[1645,1650,1654,1658,1662,1667,1671,1675,1679],{"type":50,"tag":241,"props":1646,"children":1647},{"style":527},[1648],{"type":56,"value":1649},"  {{#if @rejected \"profile\"}}",{"type":50,"tag":241,"props":1651,"children":1652},{"style":404},[1653],{"type":56,"value":407},{"type":50,"tag":241,"props":1655,"children":1656},{"style":410},[1657],{"type":56,"value":59},{"type":50,"tag":241,"props":1659,"children":1660},{"style":404},[1661],{"type":56,"value":611},{"type":50,"tag":241,"props":1663,"children":1664},{"style":527},[1665],{"type":56,"value":1666},"Could not load profile.",{"type":50,"tag":241,"props":1668,"children":1669},{"style":404},[1670],{"type":56,"value":621},{"type":50,"tag":241,"props":1672,"children":1673},{"style":410},[1674],{"type":56,"value":59},{"type":50,"tag":241,"props":1676,"children":1677},{"style":404},[1678],{"type":56,"value":611},{"type":50,"tag":241,"props":1680,"children":1681},{"style":527},[1682],{"type":56,"value":1641},{"type":50,"tag":241,"props":1684,"children":1685},{"class":243,"line":20},[1686],{"type":50,"tag":241,"props":1687,"children":1688},{"style":527},[1689],{"type":56,"value":1690},"  {{#if @resolved \"profile\"}}\n",{"type":50,"tag":241,"props":1692,"children":1693},{"class":243,"line":533},[1694],{"type":50,"tag":241,"props":1695,"children":1696},{"style":527},[1697],{"type":56,"value":1698},"    {{> profileCard profile=profile}}\n",{"type":50,"tag":241,"props":1700,"children":1701},{"class":243,"line":550},[1702],{"type":50,"tag":241,"props":1703,"children":1704},{"style":527},[1705],{"type":56,"value":689},{"type":50,"tag":241,"props":1707,"children":1708},{"class":243,"line":560},[1709],{"type":50,"tag":241,"props":1710,"children":1711},{"style":527},[1712],{"type":56,"value":1713},"{{\u002Flet}}\n",{"type":50,"tag":59,"props":1715,"children":1716},{},[1717,1719,1724,1726,1732],{"type":56,"value":1718},"Spacebars stores the latest resolved value, not necessarily the result of the\nlatest Promise. If reactive input can launch overlapping requests, use an\nabort signal, generation token, or serialized queue. Do not assume ",{"type":50,"tag":65,"props":1720,"children":1722},{"className":1721},[],[1723],{"type":56,"value":1583},{"type":56,"value":1725},"\norders results. See ",{"type":50,"tag":65,"props":1727,"children":1729},{"className":1728},[],[1730],{"type":56,"value":1731},"references\u002Fspacebars-and-async.md",{"type":56,"value":204},{"type":50,"tag":89,"props":1734,"children":1736},{"id":1735},"lifecycle-ownership",[1737],{"type":56,"value":1738},"Lifecycle ownership",{"type":50,"tag":1740,"props":1741,"children":1742},"table",{},[1743,1767],{"type":50,"tag":1744,"props":1745,"children":1746},"thead",{},[1747],{"type":50,"tag":1748,"props":1749,"children":1750},"tr",{},[1751,1757,1762],{"type":50,"tag":1752,"props":1753,"children":1754},"th",{},[1755],{"type":56,"value":1756},"Resource",{"type":50,"tag":1752,"props":1758,"children":1759},{},[1760],{"type":56,"value":1761},"Create",{"type":50,"tag":1752,"props":1763,"children":1764},{},[1765],{"type":56,"value":1766},"Destroy",{"type":50,"tag":1768,"props":1769,"children":1770},"tbody",{},[1771,1803,1824,1844,1878,1901],{"type":50,"tag":1748,"props":1772,"children":1773},{},[1774,1790,1798],{"type":50,"tag":1775,"props":1776,"children":1777},"td",{},[1778,1783,1785],{"type":50,"tag":65,"props":1779,"children":1781},{"className":1780},[],[1782],{"type":56,"value":164},{"type":56,"value":1784}," or ",{"type":50,"tag":65,"props":1786,"children":1788},{"className":1787},[],[1789],{"type":56,"value":171},{"type":50,"tag":1775,"props":1791,"children":1792},{},[1793],{"type":50,"tag":65,"props":1794,"children":1796},{"className":1795},[],[1797],{"type":56,"value":899},{"type":50,"tag":1775,"props":1799,"children":1800},{},[1801],{"type":56,"value":1802},"No manual disposal",{"type":50,"tag":1748,"props":1804,"children":1805},{},[1806,1811,1819],{"type":50,"tag":1775,"props":1807,"children":1808},{},[1809],{"type":56,"value":1810},"Reactive work",{"type":50,"tag":1775,"props":1812,"children":1813},{},[1814],{"type":50,"tag":65,"props":1815,"children":1817},{"className":1816},[],[1818],{"type":56,"value":178},{"type":50,"tag":1775,"props":1820,"children":1821},{},[1822],{"type":56,"value":1823},"Automatic with the instance",{"type":50,"tag":1748,"props":1825,"children":1826},{},[1827,1832,1840],{"type":50,"tag":1775,"props":1828,"children":1829},{},[1830],{"type":56,"value":1831},"Subscription",{"type":50,"tag":1775,"props":1833,"children":1834},{},[1835],{"type":50,"tag":65,"props":1836,"children":1838},{"className":1837},[],[1839],{"type":56,"value":186},{"type":50,"tag":1775,"props":1841,"children":1842},{},[1843],{"type":56,"value":1823},{"type":50,"tag":1748,"props":1845,"children":1846},{},[1847,1852,1868],{"type":50,"tag":1775,"props":1848,"children":1849},{},[1850],{"type":56,"value":1851},"DOM widget",{"type":50,"tag":1775,"props":1853,"children":1854},{},[1855,1860,1862],{"type":50,"tag":65,"props":1856,"children":1858},{"className":1857},[],[1859],{"type":56,"value":194},{"type":56,"value":1861},", often after ",{"type":50,"tag":65,"props":1863,"children":1865},{"className":1864},[],[1866],{"type":56,"value":1867},"Tracker.afterFlush",{"type":50,"tag":1775,"props":1869,"children":1870},{},[1871,1873],{"type":56,"value":1872},"Widget-specific teardown in ",{"type":50,"tag":65,"props":1874,"children":1876},{"className":1875},[],[1877],{"type":56,"value":202},{"type":50,"tag":1748,"props":1879,"children":1880},{},[1881,1886,1891],{"type":50,"tag":1775,"props":1882,"children":1883},{},[1884],{"type":56,"value":1885},"Window, document, timer, observer",{"type":50,"tag":1775,"props":1887,"children":1888},{},[1889],{"type":56,"value":1890},"Lifecycle callback",{"type":50,"tag":1775,"props":1892,"children":1893},{},[1894,1896],{"type":56,"value":1895},"Explicit remove, clear, disconnect, or stop in ",{"type":50,"tag":65,"props":1897,"children":1899},{"className":1898},[],[1900],{"type":56,"value":202},{"type":50,"tag":1748,"props":1902,"children":1903},{},[1904,1909,1925],{"type":50,"tag":1775,"props":1905,"children":1906},{},[1907],{"type":56,"value":1908},"Programmatic Blaze View",{"type":50,"tag":1775,"props":1910,"children":1911},{},[1912,1918,1919],{"type":50,"tag":65,"props":1913,"children":1915},{"className":1914},[],[1916],{"type":56,"value":1917},"Blaze.render",{"type":56,"value":1784},{"type":50,"tag":65,"props":1920,"children":1922},{"className":1921},[],[1923],{"type":56,"value":1924},"Blaze.renderWithData",{"type":50,"tag":1775,"props":1926,"children":1927},{},[1928],{"type":50,"tag":65,"props":1929,"children":1931},{"className":1930},[],[1932],{"type":56,"value":1933},"Blaze.remove(view)",{"type":50,"tag":59,"props":1935,"children":1936},{},[1937,1939,1945],{"type":56,"value":1938},"Read ",{"type":50,"tag":65,"props":1940,"children":1942},{"className":1941},[],[1943],{"type":56,"value":1944},"references\u002Flifecycle-and-components.md",{"type":56,"value":1946}," for data-context rules,\ncallbacks, dynamic templates, DOM scoping, and cleanup patterns.",{"type":50,"tag":89,"props":1948,"children":1950},{"id":1949},"routing-boundaries",[1951],{"type":56,"value":1952},"Routing boundaries",{"type":50,"tag":1740,"props":1954,"children":1955},{},[1956,1972],{"type":50,"tag":1744,"props":1957,"children":1958},{},[1959],{"type":50,"tag":1748,"props":1960,"children":1961},{},[1962,1967],{"type":50,"tag":1752,"props":1963,"children":1964},{},[1965],{"type":56,"value":1966},"Request",{"type":50,"tag":1752,"props":1968,"children":1969},{},[1970],{"type":56,"value":1971},"Route",{"type":50,"tag":1768,"props":1973,"children":1974},{},[1975,1988,2005,2022,2039,2056,2073,2090],{"type":50,"tag":1748,"props":1976,"children":1977},{},[1978,1983],{"type":50,"tag":1775,"props":1979,"children":1980},{},[1981],{"type":56,"value":1982},"Fresh Blaze UI, Spacebars, template lifecycle, async rendering",{"type":50,"tag":1775,"props":1984,"children":1985},{},[1986],{"type":56,"value":1987},"This skill",{"type":50,"tag":1748,"props":1989,"children":1990},{},[1991,1996],{"type":50,"tag":1775,"props":1992,"children":1993},{},[1994],{"type":56,"value":1995},"General Rspack or SWC setup and configuration helpers",{"type":50,"tag":1775,"props":1997,"children":1998},{},[1999],{"type":50,"tag":65,"props":2000,"children":2002},{"className":2001},[],[2003],{"type":56,"value":2004},"meteor-modern-build-stack",{"type":50,"tag":1748,"props":2006,"children":2007},{},[2008,2013],{"type":50,"tag":1775,"props":2009,"children":2010},{},[2011],{"type":56,"value":2012},"Convert an existing app to Rspack",{"type":50,"tag":1775,"props":2014,"children":2015},{},[2016],{"type":50,"tag":65,"props":2017,"children":2019},{"className":2018},[],[2020],{"type":56,"value":2021},"migrate-to-rspack",{"type":50,"tag":1748,"props":2023,"children":2024},{},[2025,2030],{"type":50,"tag":1775,"props":2026,"children":2027},{},[2028],{"type":56,"value":2029},"Upgrade Blaze code from Meteor 2 to Meteor 3",{"type":50,"tag":1775,"props":2031,"children":2032},{},[2033],{"type":50,"tag":65,"props":2034,"children":2036},{"className":2035},[],[2037],{"type":56,"value":2038},"migrate-to-meteor-3",{"type":50,"tag":1748,"props":2040,"children":2041},{},[2042,2047],{"type":50,"tag":1775,"props":2043,"children":2044},{},[2045],{"type":56,"value":2046},"Publication design or subscription authorization",{"type":50,"tag":1775,"props":2048,"children":2049},{},[2050],{"type":50,"tag":65,"props":2051,"children":2053},{"className":2052},[],[2054],{"type":56,"value":2055},"meteor-pubsub",{"type":50,"tag":1748,"props":2057,"children":2058},{},[2059,2064],{"type":50,"tag":1775,"props":2060,"children":2061},{},[2062],{"type":56,"value":2063},"Mongo and Minimongo API decisions",{"type":50,"tag":1775,"props":2065,"children":2066},{},[2067],{"type":50,"tag":65,"props":2068,"children":2070},{"className":2069},[],[2071],{"type":56,"value":2072},"meteor-mongo-minimongo",{"type":50,"tag":1748,"props":2074,"children":2075},{},[2076,2081],{"type":50,"tag":1775,"props":2077,"children":2078},{},[2079],{"type":56,"value":2080},"Mocha driver, browser runner, or E2E setup",{"type":50,"tag":1775,"props":2082,"children":2083},{},[2084],{"type":50,"tag":65,"props":2085,"children":2087},{"className":2086},[],[2088],{"type":56,"value":2089},"meteor-testing",{"type":50,"tag":1748,"props":2091,"children":2092},{},[2093,2098],{"type":50,"tag":1775,"props":2094,"children":2095},{},[2096],{"type":56,"value":2097},"CSP, sanitization review, or broader hardening",{"type":50,"tag":1775,"props":2099,"children":2100},{},[2101],{"type":50,"tag":65,"props":2102,"children":2104},{"className":2103},[],[2105],{"type":56,"value":2106},"meteor-security",{"type":50,"tag":59,"props":2108,"children":2109},{},[2110,2111,2117],{"type":56,"value":1577},{"type":50,"tag":65,"props":2112,"children":2114},{"className":2113},[],[2115],{"type":56,"value":2116},"references\u002Fbuild-hmr-and-testing.md",{"type":56,"value":2118}," only for Blaze-specific entry\nimports, HMR ownership, and programmatic template tests.",{"type":50,"tag":89,"props":2120,"children":2122},{"id":2121},"anti-patterns",[2123],{"type":56,"value":2124},"Anti-patterns",{"type":50,"tag":2126,"props":2127,"children":2128},"ul",{},[2129,2134,2147,2168,2173,2193,2206,2225],{"type":50,"tag":100,"props":2130,"children":2131},{},[2132],{"type":56,"value":2133},"Return async Minimongo values from every helper. Prefer synchronous client\nreads unless the flow is already async or shared with the server.",{"type":50,"tag":100,"props":2135,"children":2136},{},[2137,2139,2145],{"type":56,"value":2138},"Read reactive data only after ",{"type":50,"tag":65,"props":2140,"children":2142},{"className":2141},[],[2143],{"type":56,"value":2144},"await",{"type":56,"value":2146}," without restoring the captured Tracker\ncomputation.",{"type":50,"tag":100,"props":2148,"children":2149},{},[2150,2152,2158,2160,2166],{"type":56,"value":2151},"Treat ",{"type":50,"tag":65,"props":2153,"children":2155},{"className":2154},[],[2156],{"type":56,"value":2157},"{{#each ...}}{{else}}",{"type":56,"value":2159}," as a loading indicator. The ",{"type":50,"tag":65,"props":2161,"children":2163},{"className":2162},[],[2164],{"type":56,"value":2165},"else",{"type":56,"value":2167}," branch also\ncovers rejection and a resolved empty sequence.",{"type":50,"tag":100,"props":2169,"children":2170},{},[2171],{"type":56,"value":2172},"Pass implicit inherited contexts through reusable templates. Pass named data.",{"type":50,"tag":100,"props":2174,"children":2175},{},[2176,2178,2184,2185,2191],{"type":56,"value":2177},"Use global ",{"type":50,"tag":65,"props":2179,"children":2181},{"className":2180},[],[2182],{"type":56,"value":2183},"$()",{"type":56,"value":1784},{"type":50,"tag":65,"props":2186,"children":2188},{"className":2187},[],[2189],{"type":56,"value":2190},"document.querySelector",{"type":56,"value":2192}," for component DOM. Scope lookup\nto the template instance.",{"type":50,"tag":100,"props":2194,"children":2195},{},[2196,2198,2204],{"type":56,"value":2197},"Insert user-controlled content through triple braces or\n",{"type":50,"tag":65,"props":2199,"children":2201},{"className":2200},[],[2202],{"type":56,"value":2203},"Spacebars.SafeString",{"type":56,"value":2205}," without trusted sanitization.",{"type":50,"tag":100,"props":2207,"children":2208},{},[2209,2211,2216,2218,2224],{"type":56,"value":2210},"Remove DOM nodes created by ",{"type":50,"tag":65,"props":2212,"children":2214},{"className":2213},[],[2215],{"type":56,"value":1917},{"type":56,"value":2217}," without calling ",{"type":50,"tag":65,"props":2219,"children":2221},{"className":2220},[],[2222],{"type":56,"value":2223},"Blaze.remove",{"type":56,"value":204},{"type":50,"tag":100,"props":2226,"children":2227},{},[2228,2230,2236,2237,2243,2244,2250,2251,2257,2259,2265],{"type":56,"value":2229},"Rely on private or removed UI-era APIs such as ",{"type":50,"tag":65,"props":2231,"children":2233},{"className":2232},[],[2234],{"type":56,"value":2235},"UI.body",{"type":56,"value":317},{"type":50,"tag":65,"props":2238,"children":2240},{"className":2239},[],[2241],{"type":56,"value":2242},"Template.__define__",{"type":56,"value":72},{"type":50,"tag":65,"props":2245,"children":2247},{"className":2246},[],[2248],{"type":56,"value":2249},"Template.__body__",{"type":56,"value":72},{"type":50,"tag":65,"props":2252,"children":2254},{"className":2253},[],[2255],{"type":56,"value":2256},"Spacebars.TemplateWith",{"type":56,"value":2258},", or\n",{"type":50,"tag":65,"props":2260,"children":2262},{"className":2261},[],[2263],{"type":56,"value":2264},"Blaze.InOuterTemplateScope",{"type":56,"value":204},{"type":50,"tag":89,"props":2267,"children":2269},{"id":2268},"authoritative-resources",[2270],{"type":56,"value":2271},"Authoritative resources",{"type":50,"tag":2126,"props":2273,"children":2274},{},[2275,2285,2295,2305,2315,2325,2341,2349,2357,2365],{"type":50,"tag":100,"props":2276,"children":2277},{},[2278],{"type":50,"tag":374,"props":2279,"children":2282},{"href":2280,"rel":2281},"https:\u002F\u002Fdocs.meteor.com\u002Ftutorials\u002Fblaze\u002F",[378],[2283],{"type":56,"value":2284},"Meteor Blaze tutorial",{"type":50,"tag":100,"props":2286,"children":2287},{},[2288],{"type":50,"tag":374,"props":2289,"children":2292},{"href":2290,"rel":2291},"https:\u002F\u002Fwww.blazejs.org\u002Fguide\u002Fintroduction.html",[378],[2293],{"type":56,"value":2294},"Blaze guide",{"type":50,"tag":100,"props":2296,"children":2297},{},[2298],{"type":50,"tag":374,"props":2299,"children":2302},{"href":2300,"rel":2301},"https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Fspacebars",[378],[2303],{"type":56,"value":2304},"Spacebars API",{"type":50,"tag":100,"props":2306,"children":2307},{},[2308],{"type":50,"tag":374,"props":2309,"children":2312},{"href":2310,"rel":2311},"https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Ftemplates.html",[378],[2313],{"type":56,"value":2314},"Templates API",{"type":50,"tag":100,"props":2316,"children":2317},{},[2318],{"type":50,"tag":374,"props":2319,"children":2322},{"href":2320,"rel":2321},"https:\u002F\u002Fwww.blazejs.org\u002Fapi\u002Fblaze.html",[378],[2323],{"type":56,"value":2324},"Blaze programmatic API",{"type":50,"tag":100,"props":2326,"children":2327},{},[2328],{"type":50,"tag":374,"props":2329,"children":2332},{"href":2330,"rel":2331},"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fblaze",[378],[2333,2339],{"type":50,"tag":65,"props":2334,"children":2336},{"className":2335},[],[2337],{"type":56,"value":2338},"meteor\u002Fblaze",{"type":56,"value":2340}," source and tests",{"type":50,"tag":100,"props":2342,"children":2343},{},[2344],{"type":50,"tag":65,"props":2345,"children":2347},{"className":2346},[],[2348],{"type":56,"value":1731},{"type":50,"tag":100,"props":2350,"children":2351},{},[2352],{"type":50,"tag":65,"props":2353,"children":2355},{"className":2354},[],[2356],{"type":56,"value":1944},{"type":50,"tag":100,"props":2358,"children":2359},{},[2360],{"type":50,"tag":65,"props":2361,"children":2363},{"className":2362},[],[2364],{"type":56,"value":2116},{"type":50,"tag":100,"props":2366,"children":2367},{},[2368],{"type":50,"tag":65,"props":2369,"children":2371},{"className":2370},[],[2372],{"type":56,"value":2373},"references\u002Feval-cases.md",{"type":50,"tag":2375,"props":2376,"children":2377},"style",{},[2378],{"type":56,"value":2379},"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":2381,"total":650},[2382,2399,2405,2416,2430,2447,2461],{"slug":2383,"name":2383,"fn":2384,"description":2385,"org":2386,"tags":2387,"stars":20,"repoUrl":21,"updatedAt":2398},"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},[2388,2391,2394,2395],{"name":2389,"slug":2390,"type":13},"Auth","auth",{"name":2392,"slug":2393,"type":13},"Authentication","authentication",{"name":9,"slug":8,"type":13},{"name":2396,"slug":2397,"type":13},"OAuth","oauth","2026-08-28T15:08:40.058032",{"slug":4,"name":4,"fn":5,"description":6,"org":2400,"tags":2401,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2402,2403,2404],{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"slug":2406,"name":2406,"fn":2407,"description":2408,"org":2409,"tags":2410,"stars":20,"repoUrl":21,"updatedAt":2415},"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},[2411,2414],{"name":2412,"slug":2413,"type":13},"Engineering","engineering",{"name":9,"slug":8,"type":13},"2026-08-28T15:08:45.28079",{"slug":2417,"name":2417,"fn":2418,"description":2419,"org":2420,"tags":2421,"stars":20,"repoUrl":21,"updatedAt":2429},"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},[2422,2425,2426],{"name":2423,"slug":2424,"type":13},"Debugging","debugging",{"name":9,"slug":8,"type":13},{"name":2427,"slug":2428,"type":13},"WebSockets","websockets","2026-08-28T15:08:40.430401",{"slug":2431,"name":2431,"fn":2432,"description":2433,"org":2434,"tags":2435,"stars":20,"repoUrl":21,"updatedAt":2446},"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},[2436,2439,2442,2445],{"name":2437,"slug":2438,"type":13},"Deployment","deployment",{"name":2440,"slug":2441,"type":13},"Docker","docker",{"name":2443,"slug":2444,"type":13},"Kubernetes","kubernetes",{"name":9,"slug":8,"type":13},"2026-08-28T15:08:44.881769",{"slug":2448,"name":2448,"fn":2449,"description":2450,"org":2451,"tags":2452,"stars":20,"repoUrl":21,"updatedAt":2460},"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},[2453,2456,2459],{"name":2454,"slug":2455,"type":13},"API Development","api-development",{"name":2457,"slug":2458,"type":13},"Backend","backend",{"name":9,"slug":8,"type":13},"2026-08-28T15:09:38.691128",{"slug":2004,"name":2004,"fn":2462,"description":2463,"org":2464,"tags":2465,"stars":20,"repoUrl":21,"updatedAt":2473},"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},[2466,2469,2470],{"name":2467,"slug":2468,"type":13},"Build","build",{"name":9,"slug":8,"type":13},{"name":2471,"slug":2472,"type":13},"Performance","performance","2026-08-28T15:09:42.877439",{"items":2475,"total":650},[2476,2483,2489,2494,2500,2507,2513,2519,2533,2544,2557,2571],{"slug":2383,"name":2383,"fn":2384,"description":2385,"org":2477,"tags":2478,"stars":20,"repoUrl":21,"updatedAt":2398},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2479,2480,2481,2482],{"name":2389,"slug":2390,"type":13},{"name":2392,"slug":2393,"type":13},{"name":9,"slug":8,"type":13},{"name":2396,"slug":2397,"type":13},{"slug":4,"name":4,"fn":5,"description":6,"org":2484,"tags":2485,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2486,2487,2488],{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"name":15,"slug":16,"type":13},{"slug":2406,"name":2406,"fn":2407,"description":2408,"org":2490,"tags":2491,"stars":20,"repoUrl":21,"updatedAt":2415},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2492,2493],{"name":2412,"slug":2413,"type":13},{"name":9,"slug":8,"type":13},{"slug":2417,"name":2417,"fn":2418,"description":2419,"org":2495,"tags":2496,"stars":20,"repoUrl":21,"updatedAt":2429},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2497,2498,2499],{"name":2423,"slug":2424,"type":13},{"name":9,"slug":8,"type":13},{"name":2427,"slug":2428,"type":13},{"slug":2431,"name":2431,"fn":2432,"description":2433,"org":2501,"tags":2502,"stars":20,"repoUrl":21,"updatedAt":2446},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2503,2504,2505,2506],{"name":2437,"slug":2438,"type":13},{"name":2440,"slug":2441,"type":13},{"name":2443,"slug":2444,"type":13},{"name":9,"slug":8,"type":13},{"slug":2448,"name":2448,"fn":2449,"description":2450,"org":2508,"tags":2509,"stars":20,"repoUrl":21,"updatedAt":2460},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2510,2511,2512],{"name":2454,"slug":2455,"type":13},{"name":2457,"slug":2458,"type":13},{"name":9,"slug":8,"type":13},{"slug":2004,"name":2004,"fn":2462,"description":2463,"org":2514,"tags":2515,"stars":20,"repoUrl":21,"updatedAt":2473},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2516,2517,2518],{"name":2467,"slug":2468,"type":13},{"name":9,"slug":8,"type":13},{"name":2471,"slug":2472,"type":13},{"slug":2072,"name":2072,"fn":2520,"description":2521,"org":2522,"tags":2523,"stars":20,"repoUrl":21,"updatedAt":2532},"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},[2524,2527,2528,2529],{"name":2525,"slug":2526,"type":13},"Database","database",{"name":2423,"slug":2424,"type":13},{"name":9,"slug":8,"type":13},{"name":2530,"slug":2531,"type":13},"MongoDB","mongodb","2026-08-28T15:08:44.473981",{"slug":2055,"name":2055,"fn":2534,"description":2535,"org":2536,"tags":2537,"stars":20,"repoUrl":21,"updatedAt":2543},"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},[2538,2539,2540],{"name":2457,"slug":2458,"type":13},{"name":9,"slug":8,"type":13},{"name":2541,"slug":2542,"type":13},"Real-time","real-time","2026-08-28T15:09:37.97396",{"slug":2545,"name":2545,"fn":2546,"description":2547,"org":2548,"tags":2549,"stars":20,"repoUrl":21,"updatedAt":2556},"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},[2550,2551,2552,2555],{"name":18,"slug":19,"type":13},{"name":9,"slug":8,"type":13},{"name":2553,"slug":2554,"type":13},"React","react",{"name":15,"slug":16,"type":13},"2026-08-28T15:09:37.193947",{"slug":2106,"name":2106,"fn":2558,"description":2559,"org":2560,"tags":2561,"stars":20,"repoUrl":21,"updatedAt":2570},"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},[2562,2563,2566,2567],{"name":2389,"slug":2390,"type":13},{"name":2564,"slug":2565,"type":13},"Code Analysis","code-analysis",{"name":9,"slug":8,"type":13},{"name":2568,"slug":2569,"type":13},"Security","security","2026-08-28T15:09:32.604319",{"slug":2089,"name":2089,"fn":2572,"description":2573,"org":2574,"tags":2575,"stars":20,"repoUrl":21,"updatedAt":2583},"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},[2576,2577,2580],{"name":9,"slug":8,"type":13},{"name":2578,"slug":2579,"type":13},"QA","qa",{"name":2581,"slug":2582,"type":13},"Testing","testing","2026-08-28T15:09:38.330724"]