[{"data":1,"prerenderedAt":-1},["ShallowReactive",2],{"skill-meteor-meteor-methods":3,"mdc--1yhngy-key":36,"related-org-meteor-meteor-methods":1865,"related-repo-meteor-meteor-methods":2029},{"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-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},"meteor","Meteor","https:\u002F\u002Fpexgzepcugksgbtrxkhf.supabase.co\u002Fstorage\u002Fv1\u002Fobject\u002Fpublic\u002Forg-logos\u002Fmeteor.png",[12,16,17],{"name":13,"slug":14,"type":15},"Backend","backend","tag",{"name":9,"slug":8,"type":15},{"name":18,"slug":19,"type":15},"API Development","api-development",4,"https:\u002F\u002Fgithub.com\u002Fmeteor\u002Fagent-skills","2026-08-28T15:09:38.691128","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-methods","---\nname: meteor-methods\ndescription: >\n  Use when authoring or debugging Meteor methods (Meteor.methods, Meteor.call,\n  Meteor.callAsync). Triggers on argument validation with check(), optimistic\n  UI stubs, latency compensation, Meteor.Error handling, and DDPRateLimiter.\n  Use this skill when the user asks about server-side mutation, asks about\n  rate limiting RPC, or asks about wrapping a method with auth checks.\nmetadata:\n  author: meteor\n  kind: knowledge\n  meteor: \">=3.0\"\n  area: data\n  tagline: \"Author and debug Meteor methods (argument `check()`, optimistic stubs, latency compensation, `Meteor.Error`, `DDPRateLimiter`).\"\n  bundle: [\"essentials\", \"fullstack\"]\n  docs_synced_at: \"2026-08-25\"\nlicense: MIT\n---\n\n# Meteor methods\n\nMethods are Meteor's primitive for server-side mutation called from the client.\nIn Meteor 3 they are async on the server. Latency compensation still works via\nclient-side stubs.\n\n## Decision flow\n\n1. Is this code mutating server data? Use a method.\n2. Does the client need to read the result before the server replies? Write\n   a client stub with the same name; it mutates the local Minimongo collection\n   and the change is reverted if the server disagrees.\n3. Does the method accept untrusted input? Validate every argument with\n   `check()`. Otherwise the agent should refuse to write the method.\n4. Is the method rate-sensitive? Add a `DDPRateLimiter.addRule`.\n\n## Scaffold\n\n```javascript\nimport { Meteor } from \"meteor\u002Fmeteor\";\nimport { check, Match } from \"meteor\u002Fcheck\";\n\nMeteor.methods({\n  async addItem(payload) {\n    check(payload, {\n      title: String,\n      qty: Match.Integer,\n    });\n    if (!this.userId) {\n      throw new Meteor.Error(\"not-authorized\");\n    }\n    const _id = await Items.insertAsync({\n      ...payload,\n      ownerId: this.userId,\n      createdAt: new Date(),\n    });\n    return _id;\n  },\n});\n```\n\n## Calling from the client\n\n```javascript\ntry {\n  const id = await Meteor.callAsync(\"addItem\", { title: \"Hi\", qty: 1 });\n  setLocalId(id);\n} catch (err) {\n  if (err && typeof err === \"object\" && \"error\" in err) {\n    console.error(err.error, err.reason, err.details);\n  } else {\n    console.error(\"local or transport failure\", err);\n  }\n}\n```\n\n## Optimistic UI\n\nDefine the same method on the client. The client stub runs immediately against\nthe local Minimongo; the server's authoritative result reverts any divergence.\n\n```javascript\n\u002F\u002F client\u002Fmethods.js\nimport { Meteor } from \"meteor\u002Fmeteor\";\nimport { Random } from \"meteor\u002Frandom\";\nMeteor.methods({\n  addItem(payload) {\n    Items.insert({\n      ...payload,\n      _id: Random.id(),\n      ownerId: Meteor.userId(),\n      createdAt: new Date(),\n    });\n  },\n});\n```\n\nSynchronous stubs are simplest when they only need synchronous Minimongo.\nAsync stubs are also supported by `callAsync` and are useful when the same\nmethod definition runs on client and server with `*Async` collection calls.\nAn async stub may await microtask-based local work, but it must not wait on\n`fetch`, timers, IndexedDB, workers, or other browser macrotask APIs. Run\nexternal I\u002FO outside the stub.\n\n## Rate limiting\n\n```javascript\nimport { DDPRateLimiter } from \"meteor\u002Fddp-rate-limiter\";\n\nDDPRateLimiter.addRule(\n  {\n    type: \"method\",\n    name: \"addItem\",\n    userId: (userId) => Boolean(userId),\n  },\n  5,        \u002F\u002F operations\n  10000,    \u002F\u002F per 10s\n);\n```\n\nMeteor 3.5+ permits async matcher functions for database-backed decisions. On\nMeteor 3.0 through 3.4, matchers must stay synchronous; use a fixed rule,\nprecomputed synchronous state, or upgrade instead of awaiting Mongo in a\nmatcher.\n\nMeteor awaits async matchers sequentially on the incoming connection's message\nqueue. Project only required fields and keep the lookup fast. A rejected\nmatcher Promise errors the invocation; test that path explicitly.\n\nSee `references\u002Frate-limiting.md` for the rule-object schema and\nper-connection vs per-user keys.\n\n## Error handling\n\nThrow `Meteor.Error(code, reason, details?)` for an intentional client-visible\nfailure. A plain `Error` is logged on the server and sanitized for the client\nas `Meteor.Error(500, \"Internal server error\")`; its original message and\nstack are not exposed. `Meteor.Error` carries its code, reason, and details.\nDo not assume every `callAsync` rejection has that shape: callback misuse,\ntransport failures, and local stub exceptions can produce native or arbitrary\nerrors. Narrow the caught value before reading Meteor-specific fields.\n\n## Anti-patterns\n\n- Methods without `check()` on every argument. Reject the method in code\n  review.\n- Reusing a method for both authenticated and unauthenticated calls. Split\n  into two methods.\n- Awaiting browser macrotask APIs such as `fetch` or timers inside a client\n  stub. Async stubs are valid, but those APIs let unrelated code run before\n  the optimistic simulation finishes.\n- Calling `Meteor.user()` inside an async method body. Use `this.userId`.\n\n## See also\n\n- `references\u002Fcheck-and-validate.md`\n- `references\u002Frate-limiting.md`\n- `references\u002Feval-cases.md`\n",{"data":37,"body":47},{"name":4,"description":6,"metadata":38,"license":23},{"author":8,"kind":39,"meteor":40,"area":41,"tagline":42,"bundle":43,"docs_synced_at":46},"knowledge",">=3.0","data","Author and debug Meteor methods (argument `check()`, optimistic stubs, latency compensation, `Meteor.Error`, `DDPRateLimiter`).",[44,45],"essentials","fullstack","2026-08-25",{"type":48,"children":49},"root",[50,58,64,71,113,119,679,685,1101,1107,1112,1422,1450,1456,1693,1698,1703,1716,1722,1765,1771,1824,1830,1859],{"type":51,"tag":52,"props":53,"children":54},"element","h1",{"id":4},[55],{"type":56,"value":57},"text","Meteor methods",{"type":51,"tag":59,"props":60,"children":61},"p",{},[62],{"type":56,"value":63},"Methods are Meteor's primitive for server-side mutation called from the client.\nIn Meteor 3 they are async on the server. Latency compensation still works via\nclient-side stubs.",{"type":51,"tag":65,"props":66,"children":68},"h2",{"id":67},"decision-flow",[69],{"type":56,"value":70},"Decision flow",{"type":51,"tag":72,"props":73,"children":74},"ol",{},[75,81,86,100],{"type":51,"tag":76,"props":77,"children":78},"li",{},[79],{"type":56,"value":80},"Is this code mutating server data? Use a method.",{"type":51,"tag":76,"props":82,"children":83},{},[84],{"type":56,"value":85},"Does the client need to read the result before the server replies? Write\na client stub with the same name; it mutates the local Minimongo collection\nand the change is reverted if the server disagrees.",{"type":51,"tag":76,"props":87,"children":88},{},[89,91,98],{"type":56,"value":90},"Does the method accept untrusted input? Validate every argument with\n",{"type":51,"tag":92,"props":93,"children":95},"code",{"className":94},[],[96],{"type":56,"value":97},"check()",{"type":56,"value":99},". Otherwise the agent should refuse to write the method.",{"type":51,"tag":76,"props":101,"children":102},{},[103,105,111],{"type":56,"value":104},"Is the method rate-sensitive? Add a ",{"type":51,"tag":92,"props":106,"children":108},{"className":107},[],[109],{"type":56,"value":110},"DDPRateLimiter.addRule",{"type":56,"value":112},".",{"type":51,"tag":65,"props":114,"children":116},{"id":115},"scaffold",[117],{"type":56,"value":118},"Scaffold",{"type":51,"tag":120,"props":121,"children":126},"pre",{"className":122,"code":123,"language":124,"meta":125,"style":125},"language-javascript shiki shiki-themes material-theme-lighter material-theme material-theme-palenight","import { Meteor } from \"meteor\u002Fmeteor\";\nimport { check, Match } from \"meteor\u002Fcheck\";\n\nMeteor.methods({\n  async addItem(payload) {\n    check(payload, {\n      title: String,\n      qty: Match.Integer,\n    });\n    if (!this.userId) {\n      throw new Meteor.Error(\"not-authorized\");\n    }\n    const _id = await Items.insertAsync({\n      ...payload,\n      ownerId: this.userId,\n      createdAt: new Date(),\n    });\n    return _id;\n  },\n});\n","javascript","",[127],{"type":51,"tag":92,"props":128,"children":129},{"__ignoreMap":125},[130,185,237,247,274,310,335,359,389,406,439,491,500,546,563,589,620,636,653,662],{"type":51,"tag":131,"props":132,"children":135},"span",{"class":133,"line":134},"line",1,[136,142,148,154,159,164,169,175,180],{"type":51,"tag":131,"props":137,"children":139},{"style":138},"--shiki-light:#39ADB5;--shiki-light-font-style:italic;--shiki-default:#89DDFF;--shiki-default-font-style:italic;--shiki-dark:#89DDFF;--shiki-dark-font-style:italic",[140],{"type":56,"value":141},"import",{"type":51,"tag":131,"props":143,"children":145},{"style":144},"--shiki-light:#39ADB5;--shiki-default:#89DDFF;--shiki-dark:#89DDFF",[146],{"type":56,"value":147}," {",{"type":51,"tag":131,"props":149,"children":151},{"style":150},"--shiki-light:#90A4AE;--shiki-default:#EEFFFF;--shiki-dark:#BABED8",[152],{"type":56,"value":153}," Meteor",{"type":51,"tag":131,"props":155,"children":156},{"style":144},[157],{"type":56,"value":158}," }",{"type":51,"tag":131,"props":160,"children":161},{"style":138},[162],{"type":56,"value":163}," from",{"type":51,"tag":131,"props":165,"children":166},{"style":144},[167],{"type":56,"value":168}," \"",{"type":51,"tag":131,"props":170,"children":172},{"style":171},"--shiki-light:#91B859;--shiki-default:#C3E88D;--shiki-dark:#C3E88D",[173],{"type":56,"value":174},"meteor\u002Fmeteor",{"type":51,"tag":131,"props":176,"children":177},{"style":144},[178],{"type":56,"value":179},"\"",{"type":51,"tag":131,"props":181,"children":182},{"style":144},[183],{"type":56,"value":184},";\n",{"type":51,"tag":131,"props":186,"children":188},{"class":133,"line":187},2,[189,193,197,202,207,212,216,220,224,229,233],{"type":51,"tag":131,"props":190,"children":191},{"style":138},[192],{"type":56,"value":141},{"type":51,"tag":131,"props":194,"children":195},{"style":144},[196],{"type":56,"value":147},{"type":51,"tag":131,"props":198,"children":199},{"style":150},[200],{"type":56,"value":201}," check",{"type":51,"tag":131,"props":203,"children":204},{"style":144},[205],{"type":56,"value":206},",",{"type":51,"tag":131,"props":208,"children":209},{"style":150},[210],{"type":56,"value":211}," Match",{"type":51,"tag":131,"props":213,"children":214},{"style":144},[215],{"type":56,"value":158},{"type":51,"tag":131,"props":217,"children":218},{"style":138},[219],{"type":56,"value":163},{"type":51,"tag":131,"props":221,"children":222},{"style":144},[223],{"type":56,"value":168},{"type":51,"tag":131,"props":225,"children":226},{"style":171},[227],{"type":56,"value":228},"meteor\u002Fcheck",{"type":51,"tag":131,"props":230,"children":231},{"style":144},[232],{"type":56,"value":179},{"type":51,"tag":131,"props":234,"children":235},{"style":144},[236],{"type":56,"value":184},{"type":51,"tag":131,"props":238,"children":240},{"class":133,"line":239},3,[241],{"type":51,"tag":131,"props":242,"children":244},{"emptyLinePlaceholder":243},true,[245],{"type":56,"value":246},"\n",{"type":51,"tag":131,"props":248,"children":249},{"class":133,"line":20},[250,254,258,264,269],{"type":51,"tag":131,"props":251,"children":252},{"style":150},[253],{"type":56,"value":9},{"type":51,"tag":131,"props":255,"children":256},{"style":144},[257],{"type":56,"value":112},{"type":51,"tag":131,"props":259,"children":261},{"style":260},"--shiki-light:#6182B8;--shiki-default:#82AAFF;--shiki-dark:#82AAFF",[262],{"type":56,"value":263},"methods",{"type":51,"tag":131,"props":265,"children":266},{"style":150},[267],{"type":56,"value":268},"(",{"type":51,"tag":131,"props":270,"children":271},{"style":144},[272],{"type":56,"value":273},"{\n",{"type":51,"tag":131,"props":275,"children":277},{"class":133,"line":276},5,[278,284,290,294,300,305],{"type":51,"tag":131,"props":279,"children":281},{"style":280},"--shiki-light:#9C3EDA;--shiki-default:#C792EA;--shiki-dark:#C792EA",[282],{"type":56,"value":283},"  async",{"type":51,"tag":131,"props":285,"children":287},{"style":286},"--shiki-light:#E53935;--shiki-default:#F07178;--shiki-dark:#F07178",[288],{"type":56,"value":289}," addItem",{"type":51,"tag":131,"props":291,"children":292},{"style":144},[293],{"type":56,"value":268},{"type":51,"tag":131,"props":295,"children":297},{"style":296},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#EEFFFF;--shiki-default-font-style:italic;--shiki-dark:#BABED8;--shiki-dark-font-style:italic",[298],{"type":56,"value":299},"payload",{"type":51,"tag":131,"props":301,"children":302},{"style":144},[303],{"type":56,"value":304},")",{"type":51,"tag":131,"props":306,"children":307},{"style":144},[308],{"type":56,"value":309}," {\n",{"type":51,"tag":131,"props":311,"children":313},{"class":133,"line":312},6,[314,319,323,327,331],{"type":51,"tag":131,"props":315,"children":316},{"style":260},[317],{"type":56,"value":318},"    check",{"type":51,"tag":131,"props":320,"children":321},{"style":286},[322],{"type":56,"value":268},{"type":51,"tag":131,"props":324,"children":325},{"style":150},[326],{"type":56,"value":299},{"type":51,"tag":131,"props":328,"children":329},{"style":144},[330],{"type":56,"value":206},{"type":51,"tag":131,"props":332,"children":333},{"style":144},[334],{"type":56,"value":309},{"type":51,"tag":131,"props":336,"children":338},{"class":133,"line":337},7,[339,344,349,354],{"type":51,"tag":131,"props":340,"children":341},{"style":286},[342],{"type":56,"value":343},"      title",{"type":51,"tag":131,"props":345,"children":346},{"style":144},[347],{"type":56,"value":348},":",{"type":51,"tag":131,"props":350,"children":351},{"style":150},[352],{"type":56,"value":353}," String",{"type":51,"tag":131,"props":355,"children":356},{"style":144},[357],{"type":56,"value":358},",\n",{"type":51,"tag":131,"props":360,"children":362},{"class":133,"line":361},8,[363,368,372,376,380,385],{"type":51,"tag":131,"props":364,"children":365},{"style":286},[366],{"type":56,"value":367},"      qty",{"type":51,"tag":131,"props":369,"children":370},{"style":144},[371],{"type":56,"value":348},{"type":51,"tag":131,"props":373,"children":374},{"style":150},[375],{"type":56,"value":211},{"type":51,"tag":131,"props":377,"children":378},{"style":144},[379],{"type":56,"value":112},{"type":51,"tag":131,"props":381,"children":382},{"style":150},[383],{"type":56,"value":384},"Integer",{"type":51,"tag":131,"props":386,"children":387},{"style":144},[388],{"type":56,"value":358},{"type":51,"tag":131,"props":390,"children":392},{"class":133,"line":391},9,[393,398,402],{"type":51,"tag":131,"props":394,"children":395},{"style":144},[396],{"type":56,"value":397},"    }",{"type":51,"tag":131,"props":399,"children":400},{"style":286},[401],{"type":56,"value":304},{"type":51,"tag":131,"props":403,"children":404},{"style":144},[405],{"type":56,"value":184},{"type":51,"tag":131,"props":407,"children":409},{"class":133,"line":408},10,[410,415,420,425,430,435],{"type":51,"tag":131,"props":411,"children":412},{"style":138},[413],{"type":56,"value":414},"    if",{"type":51,"tag":131,"props":416,"children":417},{"style":286},[418],{"type":56,"value":419}," (",{"type":51,"tag":131,"props":421,"children":422},{"style":144},[423],{"type":56,"value":424},"!this.",{"type":51,"tag":131,"props":426,"children":427},{"style":150},[428],{"type":56,"value":429},"userId",{"type":51,"tag":131,"props":431,"children":432},{"style":286},[433],{"type":56,"value":434},") ",{"type":51,"tag":131,"props":436,"children":437},{"style":144},[438],{"type":56,"value":273},{"type":51,"tag":131,"props":440,"children":442},{"class":133,"line":441},11,[443,448,453,457,461,466,470,474,479,483,487],{"type":51,"tag":131,"props":444,"children":445},{"style":138},[446],{"type":56,"value":447},"      throw",{"type":51,"tag":131,"props":449,"children":450},{"style":144},[451],{"type":56,"value":452}," new",{"type":51,"tag":131,"props":454,"children":455},{"style":150},[456],{"type":56,"value":153},{"type":51,"tag":131,"props":458,"children":459},{"style":144},[460],{"type":56,"value":112},{"type":51,"tag":131,"props":462,"children":463},{"style":260},[464],{"type":56,"value":465},"Error",{"type":51,"tag":131,"props":467,"children":468},{"style":286},[469],{"type":56,"value":268},{"type":51,"tag":131,"props":471,"children":472},{"style":144},[473],{"type":56,"value":179},{"type":51,"tag":131,"props":475,"children":476},{"style":171},[477],{"type":56,"value":478},"not-authorized",{"type":51,"tag":131,"props":480,"children":481},{"style":144},[482],{"type":56,"value":179},{"type":51,"tag":131,"props":484,"children":485},{"style":286},[486],{"type":56,"value":304},{"type":51,"tag":131,"props":488,"children":489},{"style":144},[490],{"type":56,"value":184},{"type":51,"tag":131,"props":492,"children":494},{"class":133,"line":493},12,[495],{"type":51,"tag":131,"props":496,"children":497},{"style":144},[498],{"type":56,"value":499},"    }\n",{"type":51,"tag":131,"props":501,"children":503},{"class":133,"line":502},13,[504,509,514,519,524,529,533,538,542],{"type":51,"tag":131,"props":505,"children":506},{"style":280},[507],{"type":56,"value":508},"    const",{"type":51,"tag":131,"props":510,"children":511},{"style":150},[512],{"type":56,"value":513}," _id",{"type":51,"tag":131,"props":515,"children":516},{"style":144},[517],{"type":56,"value":518}," =",{"type":51,"tag":131,"props":520,"children":521},{"style":138},[522],{"type":56,"value":523}," await",{"type":51,"tag":131,"props":525,"children":526},{"style":150},[527],{"type":56,"value":528}," Items",{"type":51,"tag":131,"props":530,"children":531},{"style":144},[532],{"type":56,"value":112},{"type":51,"tag":131,"props":534,"children":535},{"style":260},[536],{"type":56,"value":537},"insertAsync",{"type":51,"tag":131,"props":539,"children":540},{"style":286},[541],{"type":56,"value":268},{"type":51,"tag":131,"props":543,"children":544},{"style":144},[545],{"type":56,"value":273},{"type":51,"tag":131,"props":547,"children":549},{"class":133,"line":548},14,[550,555,559],{"type":51,"tag":131,"props":551,"children":552},{"style":144},[553],{"type":56,"value":554},"      ...",{"type":51,"tag":131,"props":556,"children":557},{"style":150},[558],{"type":56,"value":299},{"type":51,"tag":131,"props":560,"children":561},{"style":144},[562],{"type":56,"value":358},{"type":51,"tag":131,"props":564,"children":566},{"class":133,"line":565},15,[567,572,576,581,585],{"type":51,"tag":131,"props":568,"children":569},{"style":286},[570],{"type":56,"value":571},"      ownerId",{"type":51,"tag":131,"props":573,"children":574},{"style":144},[575],{"type":56,"value":348},{"type":51,"tag":131,"props":577,"children":578},{"style":144},[579],{"type":56,"value":580}," this.",{"type":51,"tag":131,"props":582,"children":583},{"style":150},[584],{"type":56,"value":429},{"type":51,"tag":131,"props":586,"children":587},{"style":144},[588],{"type":56,"value":358},{"type":51,"tag":131,"props":590,"children":592},{"class":133,"line":591},16,[593,598,602,606,611,616],{"type":51,"tag":131,"props":594,"children":595},{"style":286},[596],{"type":56,"value":597},"      createdAt",{"type":51,"tag":131,"props":599,"children":600},{"style":144},[601],{"type":56,"value":348},{"type":51,"tag":131,"props":603,"children":604},{"style":144},[605],{"type":56,"value":452},{"type":51,"tag":131,"props":607,"children":608},{"style":260},[609],{"type":56,"value":610}," Date",{"type":51,"tag":131,"props":612,"children":613},{"style":286},[614],{"type":56,"value":615},"()",{"type":51,"tag":131,"props":617,"children":618},{"style":144},[619],{"type":56,"value":358},{"type":51,"tag":131,"props":621,"children":623},{"class":133,"line":622},17,[624,628,632],{"type":51,"tag":131,"props":625,"children":626},{"style":144},[627],{"type":56,"value":397},{"type":51,"tag":131,"props":629,"children":630},{"style":286},[631],{"type":56,"value":304},{"type":51,"tag":131,"props":633,"children":634},{"style":144},[635],{"type":56,"value":184},{"type":51,"tag":131,"props":637,"children":639},{"class":133,"line":638},18,[640,645,649],{"type":51,"tag":131,"props":641,"children":642},{"style":138},[643],{"type":56,"value":644},"    return",{"type":51,"tag":131,"props":646,"children":647},{"style":150},[648],{"type":56,"value":513},{"type":51,"tag":131,"props":650,"children":651},{"style":144},[652],{"type":56,"value":184},{"type":51,"tag":131,"props":654,"children":656},{"class":133,"line":655},19,[657],{"type":51,"tag":131,"props":658,"children":659},{"style":144},[660],{"type":56,"value":661},"  },\n",{"type":51,"tag":131,"props":663,"children":665},{"class":133,"line":664},20,[666,671,675],{"type":51,"tag":131,"props":667,"children":668},{"style":144},[669],{"type":56,"value":670},"}",{"type":51,"tag":131,"props":672,"children":673},{"style":150},[674],{"type":56,"value":304},{"type":51,"tag":131,"props":676,"children":677},{"style":144},[678],{"type":56,"value":184},{"type":51,"tag":65,"props":680,"children":682},{"id":681},"calling-from-the-client",[683],{"type":56,"value":684},"Calling from the client",{"type":51,"tag":120,"props":686,"children":688},{"className":122,"code":687,"language":124,"meta":125,"style":125},"try {\n  const id = await Meteor.callAsync(\"addItem\", { title: \"Hi\", qty: 1 });\n  setLocalId(id);\n} catch (err) {\n  if (err && typeof err === \"object\" && \"error\" in err) {\n    console.error(err.error, err.reason, err.details);\n  } else {\n    console.error(\"local or transport failure\", err);\n  }\n}\n",[689],{"type":51,"tag":92,"props":690,"children":691},{"__ignoreMap":125},[692,704,816,841,862,946,1020,1037,1085,1093],{"type":51,"tag":131,"props":693,"children":694},{"class":133,"line":134},[695,700],{"type":51,"tag":131,"props":696,"children":697},{"style":138},[698],{"type":56,"value":699},"try",{"type":51,"tag":131,"props":701,"children":702},{"style":144},[703],{"type":56,"value":309},{"type":51,"tag":131,"props":705,"children":706},{"class":133,"line":187},[707,712,717,721,725,729,733,738,742,746,751,755,759,763,768,772,776,781,785,789,794,798,804,808,812],{"type":51,"tag":131,"props":708,"children":709},{"style":280},[710],{"type":56,"value":711},"  const",{"type":51,"tag":131,"props":713,"children":714},{"style":150},[715],{"type":56,"value":716}," id",{"type":51,"tag":131,"props":718,"children":719},{"style":144},[720],{"type":56,"value":518},{"type":51,"tag":131,"props":722,"children":723},{"style":138},[724],{"type":56,"value":523},{"type":51,"tag":131,"props":726,"children":727},{"style":150},[728],{"type":56,"value":153},{"type":51,"tag":131,"props":730,"children":731},{"style":144},[732],{"type":56,"value":112},{"type":51,"tag":131,"props":734,"children":735},{"style":260},[736],{"type":56,"value":737},"callAsync",{"type":51,"tag":131,"props":739,"children":740},{"style":286},[741],{"type":56,"value":268},{"type":51,"tag":131,"props":743,"children":744},{"style":144},[745],{"type":56,"value":179},{"type":51,"tag":131,"props":747,"children":748},{"style":171},[749],{"type":56,"value":750},"addItem",{"type":51,"tag":131,"props":752,"children":753},{"style":144},[754],{"type":56,"value":179},{"type":51,"tag":131,"props":756,"children":757},{"style":144},[758],{"type":56,"value":206},{"type":51,"tag":131,"props":760,"children":761},{"style":144},[762],{"type":56,"value":147},{"type":51,"tag":131,"props":764,"children":765},{"style":286},[766],{"type":56,"value":767}," title",{"type":51,"tag":131,"props":769,"children":770},{"style":144},[771],{"type":56,"value":348},{"type":51,"tag":131,"props":773,"children":774},{"style":144},[775],{"type":56,"value":168},{"type":51,"tag":131,"props":777,"children":778},{"style":171},[779],{"type":56,"value":780},"Hi",{"type":51,"tag":131,"props":782,"children":783},{"style":144},[784],{"type":56,"value":179},{"type":51,"tag":131,"props":786,"children":787},{"style":144},[788],{"type":56,"value":206},{"type":51,"tag":131,"props":790,"children":791},{"style":286},[792],{"type":56,"value":793}," qty",{"type":51,"tag":131,"props":795,"children":796},{"style":144},[797],{"type":56,"value":348},{"type":51,"tag":131,"props":799,"children":801},{"style":800},"--shiki-light:#F76D47;--shiki-default:#F78C6C;--shiki-dark:#F78C6C",[802],{"type":56,"value":803}," 1",{"type":51,"tag":131,"props":805,"children":806},{"style":144},[807],{"type":56,"value":158},{"type":51,"tag":131,"props":809,"children":810},{"style":286},[811],{"type":56,"value":304},{"type":51,"tag":131,"props":813,"children":814},{"style":144},[815],{"type":56,"value":184},{"type":51,"tag":131,"props":817,"children":818},{"class":133,"line":239},[819,824,828,833,837],{"type":51,"tag":131,"props":820,"children":821},{"style":260},[822],{"type":56,"value":823},"  setLocalId",{"type":51,"tag":131,"props":825,"children":826},{"style":286},[827],{"type":56,"value":268},{"type":51,"tag":131,"props":829,"children":830},{"style":150},[831],{"type":56,"value":832},"id",{"type":51,"tag":131,"props":834,"children":835},{"style":286},[836],{"type":56,"value":304},{"type":51,"tag":131,"props":838,"children":839},{"style":144},[840],{"type":56,"value":184},{"type":51,"tag":131,"props":842,"children":843},{"class":133,"line":20},[844,848,853,858],{"type":51,"tag":131,"props":845,"children":846},{"style":144},[847],{"type":56,"value":670},{"type":51,"tag":131,"props":849,"children":850},{"style":138},[851],{"type":56,"value":852}," catch",{"type":51,"tag":131,"props":854,"children":855},{"style":150},[856],{"type":56,"value":857}," (err) ",{"type":51,"tag":131,"props":859,"children":860},{"style":144},[861],{"type":56,"value":273},{"type":51,"tag":131,"props":863,"children":864},{"class":133,"line":276},[865,870,874,879,884,889,894,899,903,908,912,916,920,925,929,934,938,942],{"type":51,"tag":131,"props":866,"children":867},{"style":138},[868],{"type":56,"value":869},"  if",{"type":51,"tag":131,"props":871,"children":872},{"style":286},[873],{"type":56,"value":419},{"type":51,"tag":131,"props":875,"children":876},{"style":150},[877],{"type":56,"value":878},"err",{"type":51,"tag":131,"props":880,"children":881},{"style":144},[882],{"type":56,"value":883}," &&",{"type":51,"tag":131,"props":885,"children":886},{"style":144},[887],{"type":56,"value":888}," typeof",{"type":51,"tag":131,"props":890,"children":891},{"style":150},[892],{"type":56,"value":893}," err",{"type":51,"tag":131,"props":895,"children":896},{"style":144},[897],{"type":56,"value":898}," ===",{"type":51,"tag":131,"props":900,"children":901},{"style":144},[902],{"type":56,"value":168},{"type":51,"tag":131,"props":904,"children":905},{"style":171},[906],{"type":56,"value":907},"object",{"type":51,"tag":131,"props":909,"children":910},{"style":144},[911],{"type":56,"value":179},{"type":51,"tag":131,"props":913,"children":914},{"style":144},[915],{"type":56,"value":883},{"type":51,"tag":131,"props":917,"children":918},{"style":144},[919],{"type":56,"value":168},{"type":51,"tag":131,"props":921,"children":922},{"style":171},[923],{"type":56,"value":924},"error",{"type":51,"tag":131,"props":926,"children":927},{"style":144},[928],{"type":56,"value":179},{"type":51,"tag":131,"props":930,"children":931},{"style":144},[932],{"type":56,"value":933}," in",{"type":51,"tag":131,"props":935,"children":936},{"style":150},[937],{"type":56,"value":893},{"type":51,"tag":131,"props":939,"children":940},{"style":286},[941],{"type":56,"value":434},{"type":51,"tag":131,"props":943,"children":944},{"style":144},[945],{"type":56,"value":273},{"type":51,"tag":131,"props":947,"children":948},{"class":133,"line":312},[949,954,958,962,966,970,974,978,982,986,990,995,999,1003,1007,1012,1016],{"type":51,"tag":131,"props":950,"children":951},{"style":150},[952],{"type":56,"value":953},"    console",{"type":51,"tag":131,"props":955,"children":956},{"style":144},[957],{"type":56,"value":112},{"type":51,"tag":131,"props":959,"children":960},{"style":260},[961],{"type":56,"value":924},{"type":51,"tag":131,"props":963,"children":964},{"style":286},[965],{"type":56,"value":268},{"type":51,"tag":131,"props":967,"children":968},{"style":150},[969],{"type":56,"value":878},{"type":51,"tag":131,"props":971,"children":972},{"style":144},[973],{"type":56,"value":112},{"type":51,"tag":131,"props":975,"children":976},{"style":150},[977],{"type":56,"value":924},{"type":51,"tag":131,"props":979,"children":980},{"style":144},[981],{"type":56,"value":206},{"type":51,"tag":131,"props":983,"children":984},{"style":150},[985],{"type":56,"value":893},{"type":51,"tag":131,"props":987,"children":988},{"style":144},[989],{"type":56,"value":112},{"type":51,"tag":131,"props":991,"children":992},{"style":150},[993],{"type":56,"value":994},"reason",{"type":51,"tag":131,"props":996,"children":997},{"style":144},[998],{"type":56,"value":206},{"type":51,"tag":131,"props":1000,"children":1001},{"style":150},[1002],{"type":56,"value":893},{"type":51,"tag":131,"props":1004,"children":1005},{"style":144},[1006],{"type":56,"value":112},{"type":51,"tag":131,"props":1008,"children":1009},{"style":150},[1010],{"type":56,"value":1011},"details",{"type":51,"tag":131,"props":1013,"children":1014},{"style":286},[1015],{"type":56,"value":304},{"type":51,"tag":131,"props":1017,"children":1018},{"style":144},[1019],{"type":56,"value":184},{"type":51,"tag":131,"props":1021,"children":1022},{"class":133,"line":337},[1023,1028,1033],{"type":51,"tag":131,"props":1024,"children":1025},{"style":144},[1026],{"type":56,"value":1027},"  }",{"type":51,"tag":131,"props":1029,"children":1030},{"style":138},[1031],{"type":56,"value":1032}," else",{"type":51,"tag":131,"props":1034,"children":1035},{"style":144},[1036],{"type":56,"value":309},{"type":51,"tag":131,"props":1038,"children":1039},{"class":133,"line":361},[1040,1044,1048,1052,1056,1060,1065,1069,1073,1077,1081],{"type":51,"tag":131,"props":1041,"children":1042},{"style":150},[1043],{"type":56,"value":953},{"type":51,"tag":131,"props":1045,"children":1046},{"style":144},[1047],{"type":56,"value":112},{"type":51,"tag":131,"props":1049,"children":1050},{"style":260},[1051],{"type":56,"value":924},{"type":51,"tag":131,"props":1053,"children":1054},{"style":286},[1055],{"type":56,"value":268},{"type":51,"tag":131,"props":1057,"children":1058},{"style":144},[1059],{"type":56,"value":179},{"type":51,"tag":131,"props":1061,"children":1062},{"style":171},[1063],{"type":56,"value":1064},"local or transport failure",{"type":51,"tag":131,"props":1066,"children":1067},{"style":144},[1068],{"type":56,"value":179},{"type":51,"tag":131,"props":1070,"children":1071},{"style":144},[1072],{"type":56,"value":206},{"type":51,"tag":131,"props":1074,"children":1075},{"style":150},[1076],{"type":56,"value":893},{"type":51,"tag":131,"props":1078,"children":1079},{"style":286},[1080],{"type":56,"value":304},{"type":51,"tag":131,"props":1082,"children":1083},{"style":144},[1084],{"type":56,"value":184},{"type":51,"tag":131,"props":1086,"children":1087},{"class":133,"line":391},[1088],{"type":51,"tag":131,"props":1089,"children":1090},{"style":144},[1091],{"type":56,"value":1092},"  }\n",{"type":51,"tag":131,"props":1094,"children":1095},{"class":133,"line":408},[1096],{"type":51,"tag":131,"props":1097,"children":1098},{"style":144},[1099],{"type":56,"value":1100},"}\n",{"type":51,"tag":65,"props":1102,"children":1104},{"id":1103},"optimistic-ui",[1105],{"type":56,"value":1106},"Optimistic UI",{"type":51,"tag":59,"props":1108,"children":1109},{},[1110],{"type":56,"value":1111},"Define the same method on the client. The client stub runs immediately against\nthe local Minimongo; the server's authoritative result reverts any divergence.",{"type":51,"tag":120,"props":1113,"children":1115},{"className":122,"code":1114,"language":124,"meta":125,"style":125},"\u002F\u002F client\u002Fmethods.js\nimport { Meteor } from \"meteor\u002Fmeteor\";\nimport { Random } from \"meteor\u002Frandom\";\nMeteor.methods({\n  addItem(payload) {\n    Items.insert({\n      ...payload,\n      _id: Random.id(),\n      ownerId: Meteor.userId(),\n      createdAt: new Date(),\n    });\n  },\n});\n",[1116],{"type":51,"tag":92,"props":1117,"children":1118},{"__ignoreMap":125},[1119,1128,1167,1208,1231,1255,1280,1295,1327,1358,1385,1400,1407],{"type":51,"tag":131,"props":1120,"children":1121},{"class":133,"line":134},[1122],{"type":51,"tag":131,"props":1123,"children":1125},{"style":1124},"--shiki-light:#90A4AE;--shiki-light-font-style:italic;--shiki-default:#546E7A;--shiki-default-font-style:italic;--shiki-dark:#676E95;--shiki-dark-font-style:italic",[1126],{"type":56,"value":1127},"\u002F\u002F client\u002Fmethods.js\n",{"type":51,"tag":131,"props":1129,"children":1130},{"class":133,"line":187},[1131,1135,1139,1143,1147,1151,1155,1159,1163],{"type":51,"tag":131,"props":1132,"children":1133},{"style":138},[1134],{"type":56,"value":141},{"type":51,"tag":131,"props":1136,"children":1137},{"style":144},[1138],{"type":56,"value":147},{"type":51,"tag":131,"props":1140,"children":1141},{"style":150},[1142],{"type":56,"value":153},{"type":51,"tag":131,"props":1144,"children":1145},{"style":144},[1146],{"type":56,"value":158},{"type":51,"tag":131,"props":1148,"children":1149},{"style":138},[1150],{"type":56,"value":163},{"type":51,"tag":131,"props":1152,"children":1153},{"style":144},[1154],{"type":56,"value":168},{"type":51,"tag":131,"props":1156,"children":1157},{"style":171},[1158],{"type":56,"value":174},{"type":51,"tag":131,"props":1160,"children":1161},{"style":144},[1162],{"type":56,"value":179},{"type":51,"tag":131,"props":1164,"children":1165},{"style":144},[1166],{"type":56,"value":184},{"type":51,"tag":131,"props":1168,"children":1169},{"class":133,"line":239},[1170,1174,1178,1183,1187,1191,1195,1200,1204],{"type":51,"tag":131,"props":1171,"children":1172},{"style":138},[1173],{"type":56,"value":141},{"type":51,"tag":131,"props":1175,"children":1176},{"style":144},[1177],{"type":56,"value":147},{"type":51,"tag":131,"props":1179,"children":1180},{"style":150},[1181],{"type":56,"value":1182}," Random",{"type":51,"tag":131,"props":1184,"children":1185},{"style":144},[1186],{"type":56,"value":158},{"type":51,"tag":131,"props":1188,"children":1189},{"style":138},[1190],{"type":56,"value":163},{"type":51,"tag":131,"props":1192,"children":1193},{"style":144},[1194],{"type":56,"value":168},{"type":51,"tag":131,"props":1196,"children":1197},{"style":171},[1198],{"type":56,"value":1199},"meteor\u002Frandom",{"type":51,"tag":131,"props":1201,"children":1202},{"style":144},[1203],{"type":56,"value":179},{"type":51,"tag":131,"props":1205,"children":1206},{"style":144},[1207],{"type":56,"value":184},{"type":51,"tag":131,"props":1209,"children":1210},{"class":133,"line":20},[1211,1215,1219,1223,1227],{"type":51,"tag":131,"props":1212,"children":1213},{"style":150},[1214],{"type":56,"value":9},{"type":51,"tag":131,"props":1216,"children":1217},{"style":144},[1218],{"type":56,"value":112},{"type":51,"tag":131,"props":1220,"children":1221},{"style":260},[1222],{"type":56,"value":263},{"type":51,"tag":131,"props":1224,"children":1225},{"style":150},[1226],{"type":56,"value":268},{"type":51,"tag":131,"props":1228,"children":1229},{"style":144},[1230],{"type":56,"value":273},{"type":51,"tag":131,"props":1232,"children":1233},{"class":133,"line":276},[1234,1239,1243,1247,1251],{"type":51,"tag":131,"props":1235,"children":1236},{"style":286},[1237],{"type":56,"value":1238},"  addItem",{"type":51,"tag":131,"props":1240,"children":1241},{"style":144},[1242],{"type":56,"value":268},{"type":51,"tag":131,"props":1244,"children":1245},{"style":296},[1246],{"type":56,"value":299},{"type":51,"tag":131,"props":1248,"children":1249},{"style":144},[1250],{"type":56,"value":304},{"type":51,"tag":131,"props":1252,"children":1253},{"style":144},[1254],{"type":56,"value":309},{"type":51,"tag":131,"props":1256,"children":1257},{"class":133,"line":312},[1258,1263,1267,1272,1276],{"type":51,"tag":131,"props":1259,"children":1260},{"style":150},[1261],{"type":56,"value":1262},"    Items",{"type":51,"tag":131,"props":1264,"children":1265},{"style":144},[1266],{"type":56,"value":112},{"type":51,"tag":131,"props":1268,"children":1269},{"style":260},[1270],{"type":56,"value":1271},"insert",{"type":51,"tag":131,"props":1273,"children":1274},{"style":286},[1275],{"type":56,"value":268},{"type":51,"tag":131,"props":1277,"children":1278},{"style":144},[1279],{"type":56,"value":273},{"type":51,"tag":131,"props":1281,"children":1282},{"class":133,"line":337},[1283,1287,1291],{"type":51,"tag":131,"props":1284,"children":1285},{"style":144},[1286],{"type":56,"value":554},{"type":51,"tag":131,"props":1288,"children":1289},{"style":150},[1290],{"type":56,"value":299},{"type":51,"tag":131,"props":1292,"children":1293},{"style":144},[1294],{"type":56,"value":358},{"type":51,"tag":131,"props":1296,"children":1297},{"class":133,"line":361},[1298,1303,1307,1311,1315,1319,1323],{"type":51,"tag":131,"props":1299,"children":1300},{"style":286},[1301],{"type":56,"value":1302},"      _id",{"type":51,"tag":131,"props":1304,"children":1305},{"style":144},[1306],{"type":56,"value":348},{"type":51,"tag":131,"props":1308,"children":1309},{"style":150},[1310],{"type":56,"value":1182},{"type":51,"tag":131,"props":1312,"children":1313},{"style":144},[1314],{"type":56,"value":112},{"type":51,"tag":131,"props":1316,"children":1317},{"style":260},[1318],{"type":56,"value":832},{"type":51,"tag":131,"props":1320,"children":1321},{"style":286},[1322],{"type":56,"value":615},{"type":51,"tag":131,"props":1324,"children":1325},{"style":144},[1326],{"type":56,"value":358},{"type":51,"tag":131,"props":1328,"children":1329},{"class":133,"line":391},[1330,1334,1338,1342,1346,1350,1354],{"type":51,"tag":131,"props":1331,"children":1332},{"style":286},[1333],{"type":56,"value":571},{"type":51,"tag":131,"props":1335,"children":1336},{"style":144},[1337],{"type":56,"value":348},{"type":51,"tag":131,"props":1339,"children":1340},{"style":150},[1341],{"type":56,"value":153},{"type":51,"tag":131,"props":1343,"children":1344},{"style":144},[1345],{"type":56,"value":112},{"type":51,"tag":131,"props":1347,"children":1348},{"style":260},[1349],{"type":56,"value":429},{"type":51,"tag":131,"props":1351,"children":1352},{"style":286},[1353],{"type":56,"value":615},{"type":51,"tag":131,"props":1355,"children":1356},{"style":144},[1357],{"type":56,"value":358},{"type":51,"tag":131,"props":1359,"children":1360},{"class":133,"line":408},[1361,1365,1369,1373,1377,1381],{"type":51,"tag":131,"props":1362,"children":1363},{"style":286},[1364],{"type":56,"value":597},{"type":51,"tag":131,"props":1366,"children":1367},{"style":144},[1368],{"type":56,"value":348},{"type":51,"tag":131,"props":1370,"children":1371},{"style":144},[1372],{"type":56,"value":452},{"type":51,"tag":131,"props":1374,"children":1375},{"style":260},[1376],{"type":56,"value":610},{"type":51,"tag":131,"props":1378,"children":1379},{"style":286},[1380],{"type":56,"value":615},{"type":51,"tag":131,"props":1382,"children":1383},{"style":144},[1384],{"type":56,"value":358},{"type":51,"tag":131,"props":1386,"children":1387},{"class":133,"line":441},[1388,1392,1396],{"type":51,"tag":131,"props":1389,"children":1390},{"style":144},[1391],{"type":56,"value":397},{"type":51,"tag":131,"props":1393,"children":1394},{"style":286},[1395],{"type":56,"value":304},{"type":51,"tag":131,"props":1397,"children":1398},{"style":144},[1399],{"type":56,"value":184},{"type":51,"tag":131,"props":1401,"children":1402},{"class":133,"line":493},[1403],{"type":51,"tag":131,"props":1404,"children":1405},{"style":144},[1406],{"type":56,"value":661},{"type":51,"tag":131,"props":1408,"children":1409},{"class":133,"line":502},[1410,1414,1418],{"type":51,"tag":131,"props":1411,"children":1412},{"style":144},[1413],{"type":56,"value":670},{"type":51,"tag":131,"props":1415,"children":1416},{"style":150},[1417],{"type":56,"value":304},{"type":51,"tag":131,"props":1419,"children":1420},{"style":144},[1421],{"type":56,"value":184},{"type":51,"tag":59,"props":1423,"children":1424},{},[1425,1427,1432,1434,1440,1442,1448],{"type":56,"value":1426},"Synchronous stubs are simplest when they only need synchronous Minimongo.\nAsync stubs are also supported by ",{"type":51,"tag":92,"props":1428,"children":1430},{"className":1429},[],[1431],{"type":56,"value":737},{"type":56,"value":1433}," and are useful when the same\nmethod definition runs on client and server with ",{"type":51,"tag":92,"props":1435,"children":1437},{"className":1436},[],[1438],{"type":56,"value":1439},"*Async",{"type":56,"value":1441}," collection calls.\nAn async stub may await microtask-based local work, but it must not wait on\n",{"type":51,"tag":92,"props":1443,"children":1445},{"className":1444},[],[1446],{"type":56,"value":1447},"fetch",{"type":56,"value":1449},", timers, IndexedDB, workers, or other browser macrotask APIs. Run\nexternal I\u002FO outside the stub.",{"type":51,"tag":65,"props":1451,"children":1453},{"id":1452},"rate-limiting",[1454],{"type":56,"value":1455},"Rate limiting",{"type":51,"tag":120,"props":1457,"children":1459},{"className":122,"code":1458,"language":124,"meta":125,"style":125},"import { DDPRateLimiter } from \"meteor\u002Fddp-rate-limiter\";\n\nDDPRateLimiter.addRule(\n  {\n    type: \"method\",\n    name: \"addItem\",\n    userId: (userId) => Boolean(userId),\n  },\n  5,        \u002F\u002F operations\n  10000,    \u002F\u002F per 10s\n);\n",[1460],{"type":51,"tag":92,"props":1461,"children":1462},{"__ignoreMap":125},[1463,1504,1511,1533,1541,1570,1598,1641,1648,1665,1682],{"type":51,"tag":131,"props":1464,"children":1465},{"class":133,"line":134},[1466,1470,1474,1479,1483,1487,1491,1496,1500],{"type":51,"tag":131,"props":1467,"children":1468},{"style":138},[1469],{"type":56,"value":141},{"type":51,"tag":131,"props":1471,"children":1472},{"style":144},[1473],{"type":56,"value":147},{"type":51,"tag":131,"props":1475,"children":1476},{"style":150},[1477],{"type":56,"value":1478}," DDPRateLimiter",{"type":51,"tag":131,"props":1480,"children":1481},{"style":144},[1482],{"type":56,"value":158},{"type":51,"tag":131,"props":1484,"children":1485},{"style":138},[1486],{"type":56,"value":163},{"type":51,"tag":131,"props":1488,"children":1489},{"style":144},[1490],{"type":56,"value":168},{"type":51,"tag":131,"props":1492,"children":1493},{"style":171},[1494],{"type":56,"value":1495},"meteor\u002Fddp-rate-limiter",{"type":51,"tag":131,"props":1497,"children":1498},{"style":144},[1499],{"type":56,"value":179},{"type":51,"tag":131,"props":1501,"children":1502},{"style":144},[1503],{"type":56,"value":184},{"type":51,"tag":131,"props":1505,"children":1506},{"class":133,"line":187},[1507],{"type":51,"tag":131,"props":1508,"children":1509},{"emptyLinePlaceholder":243},[1510],{"type":56,"value":246},{"type":51,"tag":131,"props":1512,"children":1513},{"class":133,"line":239},[1514,1519,1523,1528],{"type":51,"tag":131,"props":1515,"children":1516},{"style":150},[1517],{"type":56,"value":1518},"DDPRateLimiter",{"type":51,"tag":131,"props":1520,"children":1521},{"style":144},[1522],{"type":56,"value":112},{"type":51,"tag":131,"props":1524,"children":1525},{"style":260},[1526],{"type":56,"value":1527},"addRule",{"type":51,"tag":131,"props":1529,"children":1530},{"style":150},[1531],{"type":56,"value":1532},"(\n",{"type":51,"tag":131,"props":1534,"children":1535},{"class":133,"line":20},[1536],{"type":51,"tag":131,"props":1537,"children":1538},{"style":144},[1539],{"type":56,"value":1540},"  {\n",{"type":51,"tag":131,"props":1542,"children":1543},{"class":133,"line":276},[1544,1549,1553,1557,1562,1566],{"type":51,"tag":131,"props":1545,"children":1546},{"style":286},[1547],{"type":56,"value":1548},"    type",{"type":51,"tag":131,"props":1550,"children":1551},{"style":144},[1552],{"type":56,"value":348},{"type":51,"tag":131,"props":1554,"children":1555},{"style":144},[1556],{"type":56,"value":168},{"type":51,"tag":131,"props":1558,"children":1559},{"style":171},[1560],{"type":56,"value":1561},"method",{"type":51,"tag":131,"props":1563,"children":1564},{"style":144},[1565],{"type":56,"value":179},{"type":51,"tag":131,"props":1567,"children":1568},{"style":144},[1569],{"type":56,"value":358},{"type":51,"tag":131,"props":1571,"children":1572},{"class":133,"line":312},[1573,1578,1582,1586,1590,1594],{"type":51,"tag":131,"props":1574,"children":1575},{"style":286},[1576],{"type":56,"value":1577},"    name",{"type":51,"tag":131,"props":1579,"children":1580},{"style":144},[1581],{"type":56,"value":348},{"type":51,"tag":131,"props":1583,"children":1584},{"style":144},[1585],{"type":56,"value":168},{"type":51,"tag":131,"props":1587,"children":1588},{"style":171},[1589],{"type":56,"value":750},{"type":51,"tag":131,"props":1591,"children":1592},{"style":144},[1593],{"type":56,"value":179},{"type":51,"tag":131,"props":1595,"children":1596},{"style":144},[1597],{"type":56,"value":358},{"type":51,"tag":131,"props":1599,"children":1600},{"class":133,"line":337},[1601,1606,1610,1614,1618,1622,1627,1632,1637],{"type":51,"tag":131,"props":1602,"children":1603},{"style":260},[1604],{"type":56,"value":1605},"    userId",{"type":51,"tag":131,"props":1607,"children":1608},{"style":144},[1609],{"type":56,"value":348},{"type":51,"tag":131,"props":1611,"children":1612},{"style":144},[1613],{"type":56,"value":419},{"type":51,"tag":131,"props":1615,"children":1616},{"style":296},[1617],{"type":56,"value":429},{"type":51,"tag":131,"props":1619,"children":1620},{"style":144},[1621],{"type":56,"value":304},{"type":51,"tag":131,"props":1623,"children":1624},{"style":280},[1625],{"type":56,"value":1626}," =>",{"type":51,"tag":131,"props":1628,"children":1629},{"style":260},[1630],{"type":56,"value":1631}," Boolean",{"type":51,"tag":131,"props":1633,"children":1634},{"style":150},[1635],{"type":56,"value":1636},"(userId)",{"type":51,"tag":131,"props":1638,"children":1639},{"style":144},[1640],{"type":56,"value":358},{"type":51,"tag":131,"props":1642,"children":1643},{"class":133,"line":361},[1644],{"type":51,"tag":131,"props":1645,"children":1646},{"style":144},[1647],{"type":56,"value":661},{"type":51,"tag":131,"props":1649,"children":1650},{"class":133,"line":391},[1651,1656,1660],{"type":51,"tag":131,"props":1652,"children":1653},{"style":800},[1654],{"type":56,"value":1655},"  5",{"type":51,"tag":131,"props":1657,"children":1658},{"style":144},[1659],{"type":56,"value":206},{"type":51,"tag":131,"props":1661,"children":1662},{"style":1124},[1663],{"type":56,"value":1664},"        \u002F\u002F operations\n",{"type":51,"tag":131,"props":1666,"children":1667},{"class":133,"line":408},[1668,1673,1677],{"type":51,"tag":131,"props":1669,"children":1670},{"style":800},[1671],{"type":56,"value":1672},"  10000",{"type":51,"tag":131,"props":1674,"children":1675},{"style":144},[1676],{"type":56,"value":206},{"type":51,"tag":131,"props":1678,"children":1679},{"style":1124},[1680],{"type":56,"value":1681},"    \u002F\u002F per 10s\n",{"type":51,"tag":131,"props":1683,"children":1684},{"class":133,"line":441},[1685,1689],{"type":51,"tag":131,"props":1686,"children":1687},{"style":150},[1688],{"type":56,"value":304},{"type":51,"tag":131,"props":1690,"children":1691},{"style":144},[1692],{"type":56,"value":184},{"type":51,"tag":59,"props":1694,"children":1695},{},[1696],{"type":56,"value":1697},"Meteor 3.5+ permits async matcher functions for database-backed decisions. On\nMeteor 3.0 through 3.4, matchers must stay synchronous; use a fixed rule,\nprecomputed synchronous state, or upgrade instead of awaiting Mongo in a\nmatcher.",{"type":51,"tag":59,"props":1699,"children":1700},{},[1701],{"type":56,"value":1702},"Meteor awaits async matchers sequentially on the incoming connection's message\nqueue. Project only required fields and keep the lookup fast. A rejected\nmatcher Promise errors the invocation; test that path explicitly.",{"type":51,"tag":59,"props":1704,"children":1705},{},[1706,1708,1714],{"type":56,"value":1707},"See ",{"type":51,"tag":92,"props":1709,"children":1711},{"className":1710},[],[1712],{"type":56,"value":1713},"references\u002Frate-limiting.md",{"type":56,"value":1715}," for the rule-object schema and\nper-connection vs per-user keys.",{"type":51,"tag":65,"props":1717,"children":1719},{"id":1718},"error-handling",[1720],{"type":56,"value":1721},"Error handling",{"type":51,"tag":59,"props":1723,"children":1724},{},[1725,1727,1733,1735,1740,1742,1748,1750,1756,1758,1763],{"type":56,"value":1726},"Throw ",{"type":51,"tag":92,"props":1728,"children":1730},{"className":1729},[],[1731],{"type":56,"value":1732},"Meteor.Error(code, reason, details?)",{"type":56,"value":1734}," for an intentional client-visible\nfailure. A plain ",{"type":51,"tag":92,"props":1736,"children":1738},{"className":1737},[],[1739],{"type":56,"value":465},{"type":56,"value":1741}," is logged on the server and sanitized for the client\nas ",{"type":51,"tag":92,"props":1743,"children":1745},{"className":1744},[],[1746],{"type":56,"value":1747},"Meteor.Error(500, \"Internal server error\")",{"type":56,"value":1749},"; its original message and\nstack are not exposed. ",{"type":51,"tag":92,"props":1751,"children":1753},{"className":1752},[],[1754],{"type":56,"value":1755},"Meteor.Error",{"type":56,"value":1757}," carries its code, reason, and details.\nDo not assume every ",{"type":51,"tag":92,"props":1759,"children":1761},{"className":1760},[],[1762],{"type":56,"value":737},{"type":56,"value":1764}," rejection has that shape: callback misuse,\ntransport failures, and local stub exceptions can produce native or arbitrary\nerrors. Narrow the caught value before reading Meteor-specific fields.",{"type":51,"tag":65,"props":1766,"children":1768},{"id":1767},"anti-patterns",[1769],{"type":56,"value":1770},"Anti-patterns",{"type":51,"tag":1772,"props":1773,"children":1774},"ul",{},[1775,1787,1792,1804],{"type":51,"tag":76,"props":1776,"children":1777},{},[1778,1780,1785],{"type":56,"value":1779},"Methods without ",{"type":51,"tag":92,"props":1781,"children":1783},{"className":1782},[],[1784],{"type":56,"value":97},{"type":56,"value":1786}," on every argument. Reject the method in code\nreview.",{"type":51,"tag":76,"props":1788,"children":1789},{},[1790],{"type":56,"value":1791},"Reusing a method for both authenticated and unauthenticated calls. Split\ninto two methods.",{"type":51,"tag":76,"props":1793,"children":1794},{},[1795,1797,1802],{"type":56,"value":1796},"Awaiting browser macrotask APIs such as ",{"type":51,"tag":92,"props":1798,"children":1800},{"className":1799},[],[1801],{"type":56,"value":1447},{"type":56,"value":1803}," or timers inside a client\nstub. Async stubs are valid, but those APIs let unrelated code run before\nthe optimistic simulation finishes.",{"type":51,"tag":76,"props":1805,"children":1806},{},[1807,1809,1815,1817,1823],{"type":56,"value":1808},"Calling ",{"type":51,"tag":92,"props":1810,"children":1812},{"className":1811},[],[1813],{"type":56,"value":1814},"Meteor.user()",{"type":56,"value":1816}," inside an async method body. Use ",{"type":51,"tag":92,"props":1818,"children":1820},{"className":1819},[],[1821],{"type":56,"value":1822},"this.userId",{"type":56,"value":112},{"type":51,"tag":65,"props":1825,"children":1827},{"id":1826},"see-also",[1828],{"type":56,"value":1829},"See also",{"type":51,"tag":1772,"props":1831,"children":1832},{},[1833,1842,1850],{"type":51,"tag":76,"props":1834,"children":1835},{},[1836],{"type":51,"tag":92,"props":1837,"children":1839},{"className":1838},[],[1840],{"type":56,"value":1841},"references\u002Fcheck-and-validate.md",{"type":51,"tag":76,"props":1843,"children":1844},{},[1845],{"type":51,"tag":92,"props":1846,"children":1848},{"className":1847},[],[1849],{"type":56,"value":1713},{"type":51,"tag":76,"props":1851,"children":1852},{},[1853],{"type":51,"tag":92,"props":1854,"children":1856},{"className":1855},[],[1857],{"type":56,"value":1858},"references\u002Feval-cases.md",{"type":51,"tag":1860,"props":1861,"children":1862},"style",{},[1863],{"type":56,"value":1864},"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":1866,"total":548},[1867,1884,1898,1909,1923,1940,1946,1960,1975,1987,2000,2015],{"slug":1868,"name":1868,"fn":1869,"description":1870,"org":1871,"tags":1872,"stars":20,"repoUrl":21,"updatedAt":1883},"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},[1873,1876,1879,1880],{"name":1874,"slug":1875,"type":15},"Auth","auth",{"name":1877,"slug":1878,"type":15},"Authentication","authentication",{"name":9,"slug":8,"type":15},{"name":1881,"slug":1882,"type":15},"OAuth","oauth","2026-08-28T15:08:40.058032",{"slug":1885,"name":1885,"fn":1886,"description":1887,"org":1888,"tags":1889,"stars":20,"repoUrl":21,"updatedAt":1897},"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},[1890,1893,1894],{"name":1891,"slug":1892,"type":15},"Frontend","frontend",{"name":9,"slug":8,"type":15},{"name":1895,"slug":1896,"type":15},"Web Development","web-development","2026-08-28T15:09:37.601349",{"slug":1899,"name":1899,"fn":1900,"description":1901,"org":1902,"tags":1903,"stars":20,"repoUrl":21,"updatedAt":1908},"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},[1904,1907],{"name":1905,"slug":1906,"type":15},"Engineering","engineering",{"name":9,"slug":8,"type":15},"2026-08-28T15:08:45.28079",{"slug":1910,"name":1910,"fn":1911,"description":1912,"org":1913,"tags":1914,"stars":20,"repoUrl":21,"updatedAt":1922},"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},[1915,1918,1919],{"name":1916,"slug":1917,"type":15},"Debugging","debugging",{"name":9,"slug":8,"type":15},{"name":1920,"slug":1921,"type":15},"WebSockets","websockets","2026-08-28T15:08:40.430401",{"slug":1924,"name":1924,"fn":1925,"description":1926,"org":1927,"tags":1928,"stars":20,"repoUrl":21,"updatedAt":1939},"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},[1929,1932,1935,1938],{"name":1930,"slug":1931,"type":15},"Deployment","deployment",{"name":1933,"slug":1934,"type":15},"Docker","docker",{"name":1936,"slug":1937,"type":15},"Kubernetes","kubernetes",{"name":9,"slug":8,"type":15},"2026-08-28T15:08:44.881769",{"slug":4,"name":4,"fn":5,"description":6,"org":1941,"tags":1942,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[1943,1944,1945],{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":1947,"name":1947,"fn":1948,"description":1949,"org":1950,"tags":1951,"stars":20,"repoUrl":21,"updatedAt":1959},"meteor-modern-build-stack","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},[1952,1955,1956],{"name":1953,"slug":1954,"type":15},"Build","build",{"name":9,"slug":8,"type":15},{"name":1957,"slug":1958,"type":15},"Performance","performance","2026-08-28T15:09:42.877439",{"slug":1961,"name":1961,"fn":1962,"description":1963,"org":1964,"tags":1965,"stars":20,"repoUrl":21,"updatedAt":1974},"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},[1966,1969,1970,1971],{"name":1967,"slug":1968,"type":15},"Database","database",{"name":1916,"slug":1917,"type":15},{"name":9,"slug":8,"type":15},{"name":1972,"slug":1973,"type":15},"MongoDB","mongodb","2026-08-28T15:08:44.473981",{"slug":1976,"name":1976,"fn":1977,"description":1978,"org":1979,"tags":1980,"stars":20,"repoUrl":21,"updatedAt":1986},"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},[1981,1982,1983],{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"name":1984,"slug":1985,"type":15},"Real-time","real-time","2026-08-28T15:09:37.97396",{"slug":1988,"name":1988,"fn":1989,"description":1990,"org":1991,"tags":1992,"stars":20,"repoUrl":21,"updatedAt":1999},"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},[1993,1994,1995,1998],{"name":1891,"slug":1892,"type":15},{"name":9,"slug":8,"type":15},{"name":1996,"slug":1997,"type":15},"React","react",{"name":1895,"slug":1896,"type":15},"2026-08-28T15:09:37.193947",{"slug":2001,"name":2001,"fn":2002,"description":2003,"org":2004,"tags":2005,"stars":20,"repoUrl":21,"updatedAt":2014},"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},[2006,2007,2010,2011],{"name":1874,"slug":1875,"type":15},{"name":2008,"slug":2009,"type":15},"Code Analysis","code-analysis",{"name":9,"slug":8,"type":15},{"name":2012,"slug":2013,"type":15},"Security","security","2026-08-28T15:09:32.604319",{"slug":2016,"name":2016,"fn":2017,"description":2018,"org":2019,"tags":2020,"stars":20,"repoUrl":21,"updatedAt":2028},"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},[2021,2022,2025],{"name":9,"slug":8,"type":15},{"name":2023,"slug":2024,"type":15},"QA","qa",{"name":2026,"slug":2027,"type":15},"Testing","testing","2026-08-28T15:09:38.330724",{"items":2030,"total":548},[2031,2038,2044,2049,2055,2062,2068],{"slug":1868,"name":1868,"fn":1869,"description":1870,"org":2032,"tags":2033,"stars":20,"repoUrl":21,"updatedAt":1883},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2034,2035,2036,2037],{"name":1874,"slug":1875,"type":15},{"name":1877,"slug":1878,"type":15},{"name":9,"slug":8,"type":15},{"name":1881,"slug":1882,"type":15},{"slug":1885,"name":1885,"fn":1886,"description":1887,"org":2039,"tags":2040,"stars":20,"repoUrl":21,"updatedAt":1897},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2041,2042,2043],{"name":1891,"slug":1892,"type":15},{"name":9,"slug":8,"type":15},{"name":1895,"slug":1896,"type":15},{"slug":1899,"name":1899,"fn":1900,"description":1901,"org":2045,"tags":2046,"stars":20,"repoUrl":21,"updatedAt":1908},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2047,2048],{"name":1905,"slug":1906,"type":15},{"name":9,"slug":8,"type":15},{"slug":1910,"name":1910,"fn":1911,"description":1912,"org":2050,"tags":2051,"stars":20,"repoUrl":21,"updatedAt":1922},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2052,2053,2054],{"name":1916,"slug":1917,"type":15},{"name":9,"slug":8,"type":15},{"name":1920,"slug":1921,"type":15},{"slug":1924,"name":1924,"fn":1925,"description":1926,"org":2056,"tags":2057,"stars":20,"repoUrl":21,"updatedAt":1939},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2058,2059,2060,2061],{"name":1930,"slug":1931,"type":15},{"name":1933,"slug":1934,"type":15},{"name":1936,"slug":1937,"type":15},{"name":9,"slug":8,"type":15},{"slug":4,"name":4,"fn":5,"description":6,"org":2063,"tags":2064,"stars":20,"repoUrl":21,"updatedAt":22},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2065,2066,2067],{"name":18,"slug":19,"type":15},{"name":13,"slug":14,"type":15},{"name":9,"slug":8,"type":15},{"slug":1947,"name":1947,"fn":1948,"description":1949,"org":2069,"tags":2070,"stars":20,"repoUrl":21,"updatedAt":1959},{"slug":8,"name":9,"logoUrl":10,"githubOrg":8},[2071,2072,2073],{"name":1953,"slug":1954,"type":15},{"name":9,"slug":8,"type":15},{"name":1957,"slug":1958,"type":15}]