fastscript 1.0.0 → 3.0.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/CHANGELOG.md +38 -7
- package/LICENSE +33 -21
- package/README.md +605 -73
- package/node_modules/@fastscript/core-private/BOUNDARY.json +15 -0
- package/node_modules/@fastscript/core-private/README.md +5 -0
- package/node_modules/@fastscript/core-private/package.json +34 -0
- package/node_modules/@fastscript/core-private/src/asset-optimizer.mjs +67 -0
- package/node_modules/@fastscript/core-private/src/audit-log.mjs +50 -0
- package/node_modules/@fastscript/core-private/src/auth-flows.mjs +29 -0
- package/node_modules/@fastscript/core-private/src/auth.mjs +115 -0
- package/node_modules/@fastscript/core-private/src/bench.mjs +45 -0
- package/node_modules/@fastscript/core-private/src/build.mjs +670 -0
- package/node_modules/@fastscript/core-private/src/cache.mjs +248 -0
- package/node_modules/@fastscript/core-private/src/check.mjs +22 -0
- package/node_modules/@fastscript/core-private/src/cli.mjs +95 -0
- package/node_modules/@fastscript/core-private/src/compat.mjs +128 -0
- package/node_modules/@fastscript/core-private/src/create.mjs +278 -0
- package/node_modules/@fastscript/core-private/src/csp.mjs +26 -0
- package/node_modules/@fastscript/core-private/src/db-cli.mjs +185 -0
- package/node_modules/@fastscript/core-private/src/db-postgres-collection.mjs +110 -0
- package/node_modules/@fastscript/core-private/src/db-postgres.mjs +40 -0
- package/node_modules/@fastscript/core-private/src/db.mjs +103 -0
- package/node_modules/@fastscript/core-private/src/deploy.mjs +662 -0
- package/node_modules/@fastscript/core-private/src/dev.mjs +5 -0
- package/node_modules/@fastscript/core-private/src/docs-search.mjs +35 -0
- package/node_modules/@fastscript/core-private/src/env.mjs +118 -0
- package/node_modules/@fastscript/core-private/src/export.mjs +83 -0
- package/node_modules/@fastscript/core-private/src/fs-diagnostics.mjs +70 -0
- package/node_modules/@fastscript/core-private/src/fs-error-codes.mjs +141 -0
- package/node_modules/@fastscript/core-private/src/fs-formatter.mjs +66 -0
- package/node_modules/@fastscript/core-private/src/fs-linter.mjs +274 -0
- package/node_modules/@fastscript/core-private/src/fs-normalize.mjs +121 -0
- package/node_modules/@fastscript/core-private/src/fs-parser.mjs +1120 -0
- package/node_modules/@fastscript/core-private/src/generated/docs-search-index.mjs +3182 -0
- package/node_modules/@fastscript/core-private/src/i18n.mjs +25 -0
- package/node_modules/@fastscript/core-private/src/interop.mjs +16 -0
- package/node_modules/@fastscript/core-private/src/jobs.mjs +378 -0
- package/node_modules/@fastscript/core-private/src/logger.mjs +27 -0
- package/node_modules/@fastscript/core-private/src/metrics.mjs +45 -0
- package/node_modules/@fastscript/core-private/src/middleware.mjs +14 -0
- package/node_modules/@fastscript/core-private/src/migrate.mjs +81 -0
- package/node_modules/@fastscript/core-private/src/migration-wizard.mjs +16 -0
- package/node_modules/@fastscript/core-private/src/module-loader.mjs +46 -0
- package/node_modules/@fastscript/core-private/src/oauth-providers.mjs +103 -0
- package/node_modules/@fastscript/core-private/src/observability.mjs +21 -0
- package/node_modules/@fastscript/core-private/src/plugins.mjs +194 -0
- package/node_modules/@fastscript/core-private/src/retention.mjs +57 -0
- package/node_modules/@fastscript/core-private/src/routes.mjs +178 -0
- package/node_modules/@fastscript/core-private/src/scheduler.mjs +104 -0
- package/node_modules/@fastscript/core-private/src/security.mjs +233 -0
- package/node_modules/@fastscript/core-private/src/server-runtime.mjs +849 -0
- package/node_modules/@fastscript/core-private/src/serverless-handler.mjs +20 -0
- package/node_modules/@fastscript/core-private/src/session-policy.mjs +38 -0
- package/node_modules/@fastscript/core-private/src/start.mjs +10 -0
- package/node_modules/@fastscript/core-private/src/storage.mjs +155 -0
- package/node_modules/@fastscript/core-private/src/style-primitives.mjs +538 -0
- package/node_modules/@fastscript/core-private/src/style-system.mjs +461 -0
- package/node_modules/@fastscript/core-private/src/tenant.mjs +55 -0
- package/node_modules/@fastscript/core-private/src/typecheck.mjs +1466 -0
- package/node_modules/@fastscript/core-private/src/validate.mjs +22 -0
- package/node_modules/@fastscript/core-private/src/validation.mjs +88 -0
- package/node_modules/@fastscript/core-private/src/webhook.mjs +81 -0
- package/node_modules/@fastscript/core-private/src/worker.mjs +24 -0
- package/package.json +108 -14
- package/src/asset-optimizer.mjs +67 -0
- package/src/audit-log.mjs +50 -0
- package/src/auth.mjs +1 -115
- package/src/bench.mjs +20 -7
- package/src/benchmark-discipline.mjs +39 -0
- package/src/build.mjs +1 -234
- package/src/cache.mjs +210 -20
- package/src/cli.mjs +65 -6
- package/src/compat.mjs +8 -10
- package/src/conversion-manifest.mjs +101 -0
- package/src/create.mjs +71 -17
- package/src/csp.mjs +26 -0
- package/src/db-cli.mjs +152 -8
- package/src/db-postgres-collection.mjs +110 -0
- package/src/deploy.mjs +1 -65
- package/src/diagnostics.mjs +100 -0
- package/src/docs-search.mjs +35 -0
- package/src/env.mjs +34 -5
- package/src/fs-diagnostics.mjs +70 -0
- package/src/fs-error-codes.mjs +126 -0
- package/src/fs-formatter.mjs +66 -0
- package/src/fs-linter.mjs +274 -0
- package/src/fs-normalize.mjs +52 -239
- package/src/fs-parser.mjs +1 -0
- package/src/generated/docs-search-index.mjs +3591 -0
- package/src/i18n.mjs +25 -0
- package/src/jobs.mjs +283 -32
- package/src/metrics.mjs +45 -0
- package/src/migrate-rollback.mjs +144 -0
- package/src/migrate.mjs +1275 -47
- package/src/migration-wizard.mjs +42 -0
- package/src/module-loader.mjs +22 -11
- package/src/oauth-providers.mjs +103 -0
- package/src/permissions-cli.mjs +112 -0
- package/src/plugins.mjs +194 -0
- package/src/profile.mjs +95 -0
- package/src/regression-guard.mjs +245 -0
- package/src/retention.mjs +57 -0
- package/src/routes.mjs +178 -0
- package/src/runtime-permissions.mjs +299 -0
- package/src/scheduler.mjs +104 -0
- package/src/security.mjs +197 -19
- package/src/server-runtime.mjs +1 -339
- package/src/serverless-handler.mjs +20 -0
- package/src/session-policy.mjs +38 -0
- package/src/storage.mjs +1 -56
- package/src/style-system.mjs +461 -0
- package/src/tenant.mjs +55 -0
- package/src/trace.mjs +95 -0
- package/src/typecheck.mjs +1 -0
- package/src/validate.mjs +13 -1
- package/src/validation.mjs +14 -5
- package/src/webhook.mjs +1 -71
- package/src/worker.mjs +23 -4
- package/src/language-spec.mjs +0 -58
|
@@ -0,0 +1,3182 @@
|
|
|
1
|
+
export const DOC_SEARCH_INDEX = [
|
|
2
|
+
{
|
|
3
|
+
"id": "ai_context_pack_v1",
|
|
4
|
+
"title": "AI_CONTEXT_PACK_V1",
|
|
5
|
+
"path": "/docs/ai_context_pack_v1",
|
|
6
|
+
"summary": "- `.fs` primary, `.js` compatible.",
|
|
7
|
+
"terms": {
|
|
8
|
+
"0": 1,
|
|
9
|
+
"13": 1,
|
|
10
|
+
"50": 1,
|
|
11
|
+
"900": 1,
|
|
12
|
+
"ai": 2,
|
|
13
|
+
"context": 2,
|
|
14
|
+
"pack": 2,
|
|
15
|
+
"v1": 2,
|
|
16
|
+
"fs": 3,
|
|
17
|
+
"primary": 3,
|
|
18
|
+
"js": 2,
|
|
19
|
+
"compatible": 2,
|
|
20
|
+
"fastscript": 2,
|
|
21
|
+
"core": 2,
|
|
22
|
+
"contracts": 1,
|
|
23
|
+
"route": 2,
|
|
24
|
+
"pages": 2,
|
|
25
|
+
"live": 4,
|
|
26
|
+
"in": 7,
|
|
27
|
+
"app": 8,
|
|
28
|
+
"api": 2,
|
|
29
|
+
"routes": 1,
|
|
30
|
+
"optional": 2,
|
|
31
|
+
"middleware": 2,
|
|
32
|
+
"for": 1,
|
|
33
|
+
"global": 1,
|
|
34
|
+
"load": 1,
|
|
35
|
+
"ctx": 6,
|
|
36
|
+
"and": 5,
|
|
37
|
+
"http": 1,
|
|
38
|
+
"methods": 1,
|
|
39
|
+
"get": 1,
|
|
40
|
+
"post": 1,
|
|
41
|
+
"put": 1,
|
|
42
|
+
"patch": 1,
|
|
43
|
+
"delete": 1,
|
|
44
|
+
"validation": 2,
|
|
45
|
+
"use": 2,
|
|
46
|
+
"input": 2,
|
|
47
|
+
"validatebody": 1,
|
|
48
|
+
"schema": 2,
|
|
49
|
+
"validatequery": 1,
|
|
50
|
+
"schemas": 1,
|
|
51
|
+
"export": 2,
|
|
52
|
+
"modules": 1,
|
|
53
|
+
"to": 1,
|
|
54
|
+
"auto": 1,
|
|
55
|
+
"enforce": 1,
|
|
56
|
+
"request": 1,
|
|
57
|
+
"shape": 1,
|
|
58
|
+
"runtime": 1,
|
|
59
|
+
"ssr": 1,
|
|
60
|
+
"hydration": 1,
|
|
61
|
+
"function": 1,
|
|
62
|
+
"hydrate": 1,
|
|
63
|
+
"root": 1,
|
|
64
|
+
"queue": 2,
|
|
65
|
+
"available": 3,
|
|
66
|
+
"via": 4,
|
|
67
|
+
"db": 2,
|
|
68
|
+
"auth": 2,
|
|
69
|
+
"plugin": 1,
|
|
70
|
+
"hooks": 1,
|
|
71
|
+
"are": 5,
|
|
72
|
+
"supported": 1,
|
|
73
|
+
"plugins": 2,
|
|
74
|
+
"or": 1,
|
|
75
|
+
"security": 1,
|
|
76
|
+
"defaults": 1,
|
|
77
|
+
"include": 1,
|
|
78
|
+
"headers": 1,
|
|
79
|
+
"rate": 1,
|
|
80
|
+
"limit": 1,
|
|
81
|
+
"csrf": 1,
|
|
82
|
+
"can": 1,
|
|
83
|
+
"be": 1,
|
|
84
|
+
"tuned": 1,
|
|
85
|
+
"by": 3,
|
|
86
|
+
"env": 1,
|
|
87
|
+
"styling": 1,
|
|
88
|
+
"guardrails": 1,
|
|
89
|
+
"tokens": 2,
|
|
90
|
+
"design": 2,
|
|
91
|
+
"json": 2,
|
|
92
|
+
"allowed": 2,
|
|
93
|
+
"non": 1,
|
|
94
|
+
"utility": 2,
|
|
95
|
+
"classes": 2,
|
|
96
|
+
"class": 1,
|
|
97
|
+
"allowlist": 1,
|
|
98
|
+
"u": 1,
|
|
99
|
+
"generated": 2,
|
|
100
|
+
"styles": 2,
|
|
101
|
+
"css": 2,
|
|
102
|
+
"raw": 1,
|
|
103
|
+
"hex": 1,
|
|
104
|
+
"values": 1,
|
|
105
|
+
"blocked": 1,
|
|
106
|
+
"style": 2,
|
|
107
|
+
"blocks": 1,
|
|
108
|
+
"finite": 1,
|
|
109
|
+
"token": 1,
|
|
110
|
+
"only": 5,
|
|
111
|
+
"spacing": 1,
|
|
112
|
+
"props": 1,
|
|
113
|
+
"padding": 1,
|
|
114
|
+
"margin": 1,
|
|
115
|
+
"gap": 1,
|
|
116
|
+
"top": 1,
|
|
117
|
+
"right": 1,
|
|
118
|
+
"bottom": 1,
|
|
119
|
+
"left": 1,
|
|
120
|
+
"accept": 3,
|
|
121
|
+
"colors": 2,
|
|
122
|
+
"bg": 1,
|
|
123
|
+
"text": 1,
|
|
124
|
+
"border": 1,
|
|
125
|
+
"color": 1,
|
|
126
|
+
"shade": 1,
|
|
127
|
+
"with": 1,
|
|
128
|
+
"secondary": 1,
|
|
129
|
+
"accent": 1,
|
|
130
|
+
"neutral": 1,
|
|
131
|
+
"success": 1,
|
|
132
|
+
"warning": 1,
|
|
133
|
+
"error": 1,
|
|
134
|
+
"shades": 1,
|
|
135
|
+
"approved": 1,
|
|
136
|
+
"steps": 1,
|
|
137
|
+
"size": 1,
|
|
138
|
+
"weight": 1,
|
|
139
|
+
"display": 1,
|
|
140
|
+
"direction": 1,
|
|
141
|
+
"align": 1,
|
|
142
|
+
"justify": 1,
|
|
143
|
+
"framework": 1,
|
|
144
|
+
"enums": 1,
|
|
145
|
+
"responsive": 1,
|
|
146
|
+
"breakpoints": 1,
|
|
147
|
+
"sm": 1,
|
|
148
|
+
"md": 1,
|
|
149
|
+
"lg": 1,
|
|
150
|
+
"xl": 1,
|
|
151
|
+
"quality": 1,
|
|
152
|
+
"gates": 1,
|
|
153
|
+
"npm": 5,
|
|
154
|
+
"run": 5,
|
|
155
|
+
"validate": 1,
|
|
156
|
+
"test": 1,
|
|
157
|
+
"smoke": 2,
|
|
158
|
+
"dev": 1,
|
|
159
|
+
"start": 1,
|
|
160
|
+
"qa": 1,
|
|
161
|
+
"all": 1
|
|
162
|
+
}
|
|
163
|
+
},
|
|
164
|
+
{
|
|
165
|
+
"id": "api_reference",
|
|
166
|
+
"title": "API Reference",
|
|
167
|
+
"path": "/docs/api_reference",
|
|
168
|
+
"summary": "Auto-generated from `src/*.mjs`.",
|
|
169
|
+
"terms": {
|
|
170
|
+
"1": 1,
|
|
171
|
+
"api": 3,
|
|
172
|
+
"reference": 2,
|
|
173
|
+
"auto": 2,
|
|
174
|
+
"generated": 2,
|
|
175
|
+
"from": 2,
|
|
176
|
+
"src": 2,
|
|
177
|
+
"mjs": 55,
|
|
178
|
+
"asset": 1,
|
|
179
|
+
"optimizer": 1,
|
|
180
|
+
"optimizefontassets": 1,
|
|
181
|
+
"optimizeimageassets": 1,
|
|
182
|
+
"audit": 1,
|
|
183
|
+
"log": 1,
|
|
184
|
+
"createauditlog": 1,
|
|
185
|
+
"auth": 2,
|
|
186
|
+
"flows": 1,
|
|
187
|
+
"buildoauthauthorizeurl": 1,
|
|
188
|
+
"createoauthstate": 1,
|
|
189
|
+
"hashpassword": 1,
|
|
190
|
+
"verifypassword": 1,
|
|
191
|
+
"createsessionmanager": 1,
|
|
192
|
+
"parsecookies": 1,
|
|
193
|
+
"requireuser": 1,
|
|
194
|
+
"serializecookie": 1,
|
|
195
|
+
"bench": 1,
|
|
196
|
+
"runbench": 1,
|
|
197
|
+
"build": 1,
|
|
198
|
+
"runbuild": 1,
|
|
199
|
+
"cache": 1,
|
|
200
|
+
"createfilecache": 1,
|
|
201
|
+
"creatememorycache": 1,
|
|
202
|
+
"createrediscache": 1,
|
|
203
|
+
"check": 1,
|
|
204
|
+
"runcheck": 1,
|
|
205
|
+
"compat": 1,
|
|
206
|
+
"getn": 1,
|
|
207
|
+
"run": 1,
|
|
208
|
+
"runcompat": 1,
|
|
209
|
+
"value": 1,
|
|
210
|
+
"create": 1,
|
|
211
|
+
"delete": 1,
|
|
212
|
+
"get": 1,
|
|
213
|
+
"post": 1,
|
|
214
|
+
"createapp": 1,
|
|
215
|
+
"hydrate": 1,
|
|
216
|
+
"middleware": 2,
|
|
217
|
+
"schemas": 1,
|
|
218
|
+
"seed": 1,
|
|
219
|
+
"up": 1,
|
|
220
|
+
"csp": 1,
|
|
221
|
+
"generatecsppolicy": 1,
|
|
222
|
+
"db": 4,
|
|
223
|
+
"cli": 1,
|
|
224
|
+
"rundbmigrate": 1,
|
|
225
|
+
"rundbrollback": 1,
|
|
226
|
+
"rundbseed": 1,
|
|
227
|
+
"postgres": 2,
|
|
228
|
+
"collection": 1,
|
|
229
|
+
"createpostgrescollectiondatabase": 1,
|
|
230
|
+
"createpostgresadapter": 1,
|
|
231
|
+
"createfiledatabase": 1,
|
|
232
|
+
"deploy": 1,
|
|
233
|
+
"rundeploy": 1,
|
|
234
|
+
"dev": 1,
|
|
235
|
+
"rundev": 1,
|
|
236
|
+
"docs": 1,
|
|
237
|
+
"search": 1,
|
|
238
|
+
"loaddocsindex": 1,
|
|
239
|
+
"rankdocs": 1,
|
|
240
|
+
"env": 1,
|
|
241
|
+
"appendenvifmissing": 1,
|
|
242
|
+
"ensureenvexample": 1,
|
|
243
|
+
"listconfigprofiles": 1,
|
|
244
|
+
"loadenv": 1,
|
|
245
|
+
"validateappenv": 1,
|
|
246
|
+
"validateenv": 1,
|
|
247
|
+
"export": 1,
|
|
248
|
+
"runexport": 1,
|
|
249
|
+
"fs": 7,
|
|
250
|
+
"diagnostics": 1,
|
|
251
|
+
"analyzefastscript": 1,
|
|
252
|
+
"assertfastscript": 1,
|
|
253
|
+
"formatdiagnosticsreport": 1,
|
|
254
|
+
"error": 2,
|
|
255
|
+
"codes": 2,
|
|
256
|
+
"resolveerrormeta": 1,
|
|
257
|
+
"formatter": 1,
|
|
258
|
+
"formatfastscriptsource": 1,
|
|
259
|
+
"runformat": 1,
|
|
260
|
+
"linter": 1,
|
|
261
|
+
"runlint": 1,
|
|
262
|
+
"normalize": 1,
|
|
263
|
+
"normalizefastscript": 1,
|
|
264
|
+
"normalizefastscriptwithmetadata": 1,
|
|
265
|
+
"striptypescripthints": 1,
|
|
266
|
+
"parser": 1,
|
|
267
|
+
"fastscript": 1,
|
|
268
|
+
"ast": 1,
|
|
269
|
+
"version": 2,
|
|
270
|
+
"buildinlinesourcemapcomment": 1,
|
|
271
|
+
"compilefastscript": 1,
|
|
272
|
+
"formatdiagnostic": 1,
|
|
273
|
+
"parsefastscript": 1,
|
|
274
|
+
"tokenizefastscript": 1,
|
|
275
|
+
"i18n": 1,
|
|
276
|
+
"geti18nconfig": 1,
|
|
277
|
+
"resolvelocalefrompath": 1,
|
|
278
|
+
"withlocalepath": 1,
|
|
279
|
+
"interop": 1,
|
|
280
|
+
"importany": 1,
|
|
281
|
+
"interopcall": 1,
|
|
282
|
+
"resolveexport": 1,
|
|
283
|
+
"jobs": 1,
|
|
284
|
+
"createdistributedjobqueue": 1,
|
|
285
|
+
"createjobqueue": 1,
|
|
286
|
+
"createredisjobqueue": 1,
|
|
287
|
+
"loadjobhandlers": 1,
|
|
288
|
+
"loadschedules": 1,
|
|
289
|
+
"replaydeadletter": 1,
|
|
290
|
+
"runworker": 1,
|
|
291
|
+
"logger": 1,
|
|
292
|
+
"createlogger": 1,
|
|
293
|
+
"metrics": 1,
|
|
294
|
+
"createmetricsstore": 1,
|
|
295
|
+
"composemiddleware": 1,
|
|
296
|
+
"migrate": 1,
|
|
297
|
+
"runmigrate": 1,
|
|
298
|
+
"migration": 1,
|
|
299
|
+
"wizard": 1,
|
|
300
|
+
"runmigrationwizard": 1,
|
|
301
|
+
"module": 1,
|
|
302
|
+
"loader": 1,
|
|
303
|
+
"importsourcemodule": 1,
|
|
304
|
+
"oauth": 1,
|
|
305
|
+
"providers": 1,
|
|
306
|
+
"createoauthadapter": 1,
|
|
307
|
+
"getauthprovider": 1,
|
|
308
|
+
"listauthproviders": 1,
|
|
309
|
+
"observability": 1,
|
|
310
|
+
"createotelexporter": 1,
|
|
311
|
+
"createtracer": 1,
|
|
312
|
+
"plugins": 1,
|
|
313
|
+
"plugin": 1,
|
|
314
|
+
"createpluginruntime": 1,
|
|
315
|
+
"retention": 1,
|
|
316
|
+
"applyjsonarrayretention": 1,
|
|
317
|
+
"runretentionsweep": 1,
|
|
318
|
+
"sweepfileages": 1,
|
|
319
|
+
"routes": 1,
|
|
320
|
+
"compareroutepriority": 1,
|
|
321
|
+
"inferroutelayouts": 1,
|
|
322
|
+
"inferroutemeta": 1,
|
|
323
|
+
"inferrouteparamtypes": 1,
|
|
324
|
+
"islayoutfile": 1,
|
|
325
|
+
"isnotfoundfile": 1,
|
|
326
|
+
"sortroutesbypriority": 1,
|
|
327
|
+
"scheduler": 1,
|
|
328
|
+
"nextcronrun": 1,
|
|
329
|
+
"normalizescheduleentry": 1,
|
|
330
|
+
"parsecronexpression": 1,
|
|
331
|
+
"security": 1,
|
|
332
|
+
"abuseguard": 1,
|
|
333
|
+
"createfilewindowstore": 1,
|
|
334
|
+
"creatememorywindowstore": 1,
|
|
335
|
+
"createrediswindowstore": 1,
|
|
336
|
+
"createwindowstore": 1,
|
|
337
|
+
"csrf": 1,
|
|
338
|
+
"ratelimit": 1,
|
|
339
|
+
"requestquota": 1,
|
|
340
|
+
"securityheaders": 1,
|
|
341
|
+
"server": 1,
|
|
342
|
+
"runtime": 1,
|
|
343
|
+
"runserver": 1,
|
|
344
|
+
"session": 1,
|
|
345
|
+
"policy": 1,
|
|
346
|
+
"resolvesessionpolicy": 1,
|
|
347
|
+
"start": 1,
|
|
348
|
+
"runstart": 1,
|
|
349
|
+
"storage": 1,
|
|
350
|
+
"createlocalstorage": 1,
|
|
351
|
+
"creates3compatiblestorage": 1,
|
|
352
|
+
"style": 1,
|
|
353
|
+
"system": 1,
|
|
354
|
+
"ensuredesignsystem": 1,
|
|
355
|
+
"validateappstyles": 1,
|
|
356
|
+
"tenant": 1,
|
|
357
|
+
"resolvetenantid": 1,
|
|
358
|
+
"scopecachebytenant": 1,
|
|
359
|
+
"scopedbbytenant": 1,
|
|
360
|
+
"typecheck": 1,
|
|
361
|
+
"runtypecheck": 1,
|
|
362
|
+
"validate": 1,
|
|
363
|
+
"runvalidate": 1,
|
|
364
|
+
"validation": 1,
|
|
365
|
+
"readbody": 1,
|
|
366
|
+
"readjsonbody": 1,
|
|
367
|
+
"validateshape": 1,
|
|
368
|
+
"webhook": 1,
|
|
369
|
+
"isreplay": 1,
|
|
370
|
+
"readrawbody": 1,
|
|
371
|
+
"signpayload": 1,
|
|
372
|
+
"verifysignature": 1,
|
|
373
|
+
"verifywebhookrequest": 1,
|
|
374
|
+
"worker": 1,
|
|
375
|
+
"runworkercommand": 1
|
|
376
|
+
}
|
|
377
|
+
},
|
|
378
|
+
{
|
|
379
|
+
"id": "architecture_overview",
|
|
380
|
+
"title": "FastScript Architecture Overview",
|
|
381
|
+
"path": "/docs/architecture_overview",
|
|
382
|
+
"summary": "1. Tokenize `.fs` input with trivia-preserving CST tokens.",
|
|
383
|
+
"terms": {
|
|
384
|
+
"1": 5,
|
|
385
|
+
"2": 4,
|
|
386
|
+
"3": 4,
|
|
387
|
+
"4": 4,
|
|
388
|
+
"5": 4,
|
|
389
|
+
"fastscript": 4,
|
|
390
|
+
"architecture": 2,
|
|
391
|
+
"overview": 2,
|
|
392
|
+
"tokenize": 2,
|
|
393
|
+
"fs": 5,
|
|
394
|
+
"input": 2,
|
|
395
|
+
"with": 6,
|
|
396
|
+
"trivia": 2,
|
|
397
|
+
"preserving": 2,
|
|
398
|
+
"cst": 3,
|
|
399
|
+
"tokens": 2,
|
|
400
|
+
"language": 2,
|
|
401
|
+
"pipeline": 4,
|
|
402
|
+
"apply": 2,
|
|
403
|
+
"declaration": 1,
|
|
404
|
+
"rewrites": 1,
|
|
405
|
+
"state": 1,
|
|
406
|
+
"fn": 1,
|
|
407
|
+
"to": 3,
|
|
408
|
+
"canonical": 1,
|
|
409
|
+
"javascript": 2,
|
|
410
|
+
"parse": 1,
|
|
411
|
+
"rewritten": 1,
|
|
412
|
+
"source": 3,
|
|
413
|
+
"full": 1,
|
|
414
|
+
"ecmascript": 1,
|
|
415
|
+
"module": 1,
|
|
416
|
+
"grammar": 1,
|
|
417
|
+
"remap": 1,
|
|
418
|
+
"ast": 2,
|
|
419
|
+
"spans": 1,
|
|
420
|
+
"original": 1,
|
|
421
|
+
"offsets": 1,
|
|
422
|
+
"emit": 4,
|
|
423
|
+
"deterministic": 1,
|
|
424
|
+
"diagnostics": 4,
|
|
425
|
+
"and": 6,
|
|
426
|
+
"chained": 1,
|
|
427
|
+
"maps": 1,
|
|
428
|
+
"static": 1,
|
|
429
|
+
"analysis": 1,
|
|
430
|
+
"parser": 1,
|
|
431
|
+
"fs100x": 1,
|
|
432
|
+
"are": 1,
|
|
433
|
+
"collected": 1,
|
|
434
|
+
"first": 1,
|
|
435
|
+
"linter": 1,
|
|
436
|
+
"runs": 1,
|
|
437
|
+
"aware": 1,
|
|
438
|
+
"rules": 1,
|
|
439
|
+
"safe": 1,
|
|
440
|
+
"autofix": 1,
|
|
441
|
+
"support": 1,
|
|
442
|
+
"type": 1,
|
|
443
|
+
"checker": 1,
|
|
444
|
+
"builds": 1,
|
|
445
|
+
"lexical": 1,
|
|
446
|
+
"scopes": 1,
|
|
447
|
+
"symbol": 1,
|
|
448
|
+
"tables": 1,
|
|
449
|
+
"inference": 1,
|
|
450
|
+
"semantic": 1,
|
|
451
|
+
"checks": 2,
|
|
452
|
+
"fs410x": 1,
|
|
453
|
+
"route": 2,
|
|
454
|
+
"compatibility": 1,
|
|
455
|
+
"fs400x": 1,
|
|
456
|
+
"build": 1,
|
|
457
|
+
"validate": 2,
|
|
458
|
+
"app": 3,
|
|
459
|
+
"structure": 1,
|
|
460
|
+
"style": 1,
|
|
461
|
+
"constraints": 1,
|
|
462
|
+
"normalize": 1,
|
|
463
|
+
"inline": 1,
|
|
464
|
+
"map": 1,
|
|
465
|
+
"chaining": 1,
|
|
466
|
+
"bundle": 1,
|
|
467
|
+
"routes": 1,
|
|
468
|
+
"api": 3,
|
|
469
|
+
"middleware": 4,
|
|
470
|
+
"esbuild": 1,
|
|
471
|
+
"generate": 1,
|
|
472
|
+
"dist": 1,
|
|
473
|
+
"manifest": 1,
|
|
474
|
+
"json": 2,
|
|
475
|
+
"runtime": 2,
|
|
476
|
+
"router": 1,
|
|
477
|
+
"html": 2,
|
|
478
|
+
"shell": 1,
|
|
479
|
+
"load": 1,
|
|
480
|
+
"env": 2,
|
|
481
|
+
"schema": 1,
|
|
482
|
+
"initialize": 1,
|
|
483
|
+
"auth": 1,
|
|
484
|
+
"db": 1,
|
|
485
|
+
"queue": 1,
|
|
486
|
+
"cache": 1,
|
|
487
|
+
"storage": 1,
|
|
488
|
+
"services": 1,
|
|
489
|
+
"chain": 1,
|
|
490
|
+
"core": 1,
|
|
491
|
+
"security": 1,
|
|
492
|
+
"plugin": 1,
|
|
493
|
+
"resolve": 1,
|
|
494
|
+
"page": 1,
|
|
495
|
+
"execute": 1,
|
|
496
|
+
"handler": 1,
|
|
497
|
+
"return": 1,
|
|
498
|
+
"ssr": 1,
|
|
499
|
+
"or": 1,
|
|
500
|
+
"response": 1,
|
|
501
|
+
"conformance": 5,
|
|
502
|
+
"regression": 2,
|
|
503
|
+
"fixtures": 2,
|
|
504
|
+
"spec": 2,
|
|
505
|
+
"snapshot": 1,
|
|
506
|
+
"baseline": 1,
|
|
507
|
+
"snapshots": 1,
|
|
508
|
+
"harness": 1,
|
|
509
|
+
"npm": 1,
|
|
510
|
+
"run": 1,
|
|
511
|
+
"test": 1
|
|
512
|
+
}
|
|
513
|
+
},
|
|
514
|
+
{
|
|
515
|
+
"id": "compatibility_migration_packs",
|
|
516
|
+
"title": "Compatibility Layer And Migration Packs",
|
|
517
|
+
"path": "/docs/compatibility_migration_packs",
|
|
518
|
+
"summary": "FastScript ships migration packs for common adoption paths:",
|
|
519
|
+
"terms": {
|
|
520
|
+
"compatibility": 2,
|
|
521
|
+
"layer": 2,
|
|
522
|
+
"and": 2,
|
|
523
|
+
"migration": 6,
|
|
524
|
+
"packs": 7,
|
|
525
|
+
"fastscript": 3,
|
|
526
|
+
"ships": 2,
|
|
527
|
+
"for": 3,
|
|
528
|
+
"common": 2,
|
|
529
|
+
"adoption": 2,
|
|
530
|
+
"paths": 2,
|
|
531
|
+
"js": 1,
|
|
532
|
+
"to": 4,
|
|
533
|
+
"fs": 3,
|
|
534
|
+
"basic": 1,
|
|
535
|
+
"javascript": 1,
|
|
536
|
+
"page": 1,
|
|
537
|
+
"starter": 2,
|
|
538
|
+
"ts": 1,
|
|
539
|
+
"typed": 1,
|
|
540
|
+
"typescript": 1,
|
|
541
|
+
"conversion": 1,
|
|
542
|
+
"next": 1,
|
|
543
|
+
"core": 1,
|
|
544
|
+
"routing": 1,
|
|
545
|
+
"layout": 1,
|
|
546
|
+
"checklist": 1,
|
|
547
|
+
"use": 1,
|
|
548
|
+
"npm": 1,
|
|
549
|
+
"run": 1,
|
|
550
|
+
"wizard": 1,
|
|
551
|
+
"migrate": 1,
|
|
552
|
+
"file": 1,
|
|
553
|
+
"preview": 1,
|
|
554
|
+
"driven": 1,
|
|
555
|
+
"migrations": 1
|
|
556
|
+
}
|
|
557
|
+
},
|
|
558
|
+
{
|
|
559
|
+
"id": "compiler_error_codes",
|
|
560
|
+
"title": "FastScript Compiler Error Codes",
|
|
561
|
+
"path": "/docs/compiler_error_codes",
|
|
562
|
+
"summary": "- `FS1001`: Invalid reactive declaration (`~name = expression` expected).",
|
|
563
|
+
"terms": {
|
|
564
|
+
"fastscript": 2,
|
|
565
|
+
"compiler": 4,
|
|
566
|
+
"error": 5,
|
|
567
|
+
"codes": 2,
|
|
568
|
+
"fs1001": 2,
|
|
569
|
+
"invalid": 6,
|
|
570
|
+
"reactive": 2,
|
|
571
|
+
"declaration": 6,
|
|
572
|
+
"name": 4,
|
|
573
|
+
"expression": 3,
|
|
574
|
+
"expected": 4,
|
|
575
|
+
"parse": 2,
|
|
576
|
+
"fs1002": 1,
|
|
577
|
+
"state": 2,
|
|
578
|
+
"fs1003": 1,
|
|
579
|
+
"function": 2,
|
|
580
|
+
"fn": 1,
|
|
581
|
+
"fs1004": 1,
|
|
582
|
+
"unsupported": 2,
|
|
583
|
+
"runtime": 1,
|
|
584
|
+
"type": 4,
|
|
585
|
+
"interface": 1,
|
|
586
|
+
"enum": 1,
|
|
587
|
+
"in": 1,
|
|
588
|
+
"fs": 1,
|
|
589
|
+
"fs1005": 1,
|
|
590
|
+
"fs1006": 1,
|
|
591
|
+
"identifier": 1,
|
|
592
|
+
"fs1007": 1,
|
|
593
|
+
"todo": 2,
|
|
594
|
+
"token": 3,
|
|
595
|
+
"warning": 3,
|
|
596
|
+
"fs1010": 1,
|
|
597
|
+
"unterminated": 1,
|
|
598
|
+
"fs1101": 1,
|
|
599
|
+
"directive": 1,
|
|
600
|
+
"lint": 1,
|
|
601
|
+
"fs3001": 1,
|
|
602
|
+
"blocking": 1,
|
|
603
|
+
"fs3002": 1,
|
|
604
|
+
"var": 1,
|
|
605
|
+
"fs3003": 1,
|
|
606
|
+
"inline": 1,
|
|
607
|
+
"script": 1,
|
|
608
|
+
"fs3004": 1,
|
|
609
|
+
"binding": 2,
|
|
610
|
+
"can": 1,
|
|
611
|
+
"be": 1,
|
|
612
|
+
"const": 1,
|
|
613
|
+
"typecheck": 1,
|
|
614
|
+
"semantics": 1,
|
|
615
|
+
"fs4001": 1,
|
|
616
|
+
"duplicate": 1,
|
|
617
|
+
"route": 2,
|
|
618
|
+
"mapping": 1,
|
|
619
|
+
"fs4002": 1,
|
|
620
|
+
"param": 1,
|
|
621
|
+
"not": 2,
|
|
622
|
+
"referenced": 1,
|
|
623
|
+
"fs4101": 1,
|
|
624
|
+
"unknown": 1,
|
|
625
|
+
"symbol": 1,
|
|
626
|
+
"fs4102": 1,
|
|
627
|
+
"assignment": 1,
|
|
628
|
+
"update": 1,
|
|
629
|
+
"to": 1,
|
|
630
|
+
"immutable": 1,
|
|
631
|
+
"fs4103": 1,
|
|
632
|
+
"mismatch": 3,
|
|
633
|
+
"fs4104": 1,
|
|
634
|
+
"argument": 1,
|
|
635
|
+
"count": 1,
|
|
636
|
+
"fs4105": 1,
|
|
637
|
+
"return": 1,
|
|
638
|
+
"fs4106": 1,
|
|
639
|
+
"non": 1,
|
|
640
|
+
"callable": 1,
|
|
641
|
+
"value": 1,
|
|
642
|
+
"invoked": 1,
|
|
643
|
+
"fs4107": 1,
|
|
644
|
+
"operator": 1,
|
|
645
|
+
"operand": 1,
|
|
646
|
+
"types": 1,
|
|
647
|
+
"modes": 1,
|
|
648
|
+
"strict": 1,
|
|
649
|
+
"warnings": 2,
|
|
650
|
+
"and": 1,
|
|
651
|
+
"errors": 2,
|
|
652
|
+
"are": 1,
|
|
653
|
+
"reported": 1,
|
|
654
|
+
"fail": 2,
|
|
655
|
+
"compilation": 1,
|
|
656
|
+
"lenient": 1,
|
|
657
|
+
"recovers": 1,
|
|
658
|
+
"where": 1,
|
|
659
|
+
"possible": 1,
|
|
660
|
+
"do": 1,
|
|
661
|
+
"build": 1
|
|
662
|
+
}
|
|
663
|
+
},
|
|
664
|
+
{
|
|
665
|
+
"id": "contributing",
|
|
666
|
+
"title": "Contributing to FastScript",
|
|
667
|
+
"path": "/docs/contributing",
|
|
668
|
+
"summary": "1. `npm install`",
|
|
669
|
+
"terms": {
|
|
670
|
+
"1": 2,
|
|
671
|
+
"2": 1,
|
|
672
|
+
"3": 1,
|
|
673
|
+
"contributing": 2,
|
|
674
|
+
"to": 2,
|
|
675
|
+
"fastscript": 2,
|
|
676
|
+
"npm": 4,
|
|
677
|
+
"install": 3,
|
|
678
|
+
"local": 1,
|
|
679
|
+
"setup": 1,
|
|
680
|
+
"run": 2,
|
|
681
|
+
"hooks": 1,
|
|
682
|
+
"qa": 3,
|
|
683
|
+
"gate": 2,
|
|
684
|
+
"definition": 1,
|
|
685
|
+
"of": 1,
|
|
686
|
+
"done": 1,
|
|
687
|
+
"feature": 1,
|
|
688
|
+
"includes": 1,
|
|
689
|
+
"tests": 1,
|
|
690
|
+
"docs": 3,
|
|
691
|
+
"updated": 2,
|
|
692
|
+
"for": 3,
|
|
693
|
+
"public": 1,
|
|
694
|
+
"behavior": 2,
|
|
695
|
+
"changes": 3,
|
|
696
|
+
"passes": 1,
|
|
697
|
+
"locally": 1,
|
|
698
|
+
"all": 1,
|
|
699
|
+
"release": 1,
|
|
700
|
+
"candidates": 1,
|
|
701
|
+
"stable": 2,
|
|
702
|
+
"cuts": 1,
|
|
703
|
+
"no": 1,
|
|
704
|
+
"unchecked": 1,
|
|
705
|
+
"security": 1,
|
|
706
|
+
"regressions": 1,
|
|
707
|
+
"language": 3,
|
|
708
|
+
"update": 1,
|
|
709
|
+
"spec": 3,
|
|
710
|
+
"v1": 1,
|
|
711
|
+
"md": 2,
|
|
712
|
+
"and": 3,
|
|
713
|
+
"conformance": 1,
|
|
714
|
+
"snapshots": 1,
|
|
715
|
+
"review": 1,
|
|
716
|
+
"checklist": 1,
|
|
717
|
+
"is": 1,
|
|
718
|
+
"backwards": 1,
|
|
719
|
+
"compatible": 1,
|
|
720
|
+
"or": 1,
|
|
721
|
+
"clearly": 1,
|
|
722
|
+
"documented": 1,
|
|
723
|
+
"as": 1,
|
|
724
|
+
"breaking": 1,
|
|
725
|
+
"are": 5,
|
|
726
|
+
"parser": 1,
|
|
727
|
+
"linter": 1,
|
|
728
|
+
"typecheck": 1,
|
|
729
|
+
"diagnostics": 1,
|
|
730
|
+
"deterministic": 1,
|
|
731
|
+
"with": 2,
|
|
732
|
+
"codes": 1,
|
|
733
|
+
"source": 1,
|
|
734
|
+
"maps": 1,
|
|
735
|
+
"still": 1,
|
|
736
|
+
"correct": 1,
|
|
737
|
+
"transformed": 1,
|
|
738
|
+
"fs": 1,
|
|
739
|
+
"code": 1,
|
|
740
|
+
"formatter": 1,
|
|
741
|
+
"results": 1,
|
|
742
|
+
"idempotent": 1,
|
|
743
|
+
"failure": 1,
|
|
744
|
+
"paths": 1,
|
|
745
|
+
"tested": 1,
|
|
746
|
+
"migration": 1,
|
|
747
|
+
"notes": 1,
|
|
748
|
+
"rfc": 2,
|
|
749
|
+
"requirement": 1,
|
|
750
|
+
"follow": 1,
|
|
751
|
+
"governance": 1,
|
|
752
|
+
"versioning": 1,
|
|
753
|
+
"policy": 1,
|
|
754
|
+
"major": 1,
|
|
755
|
+
"non": 1,
|
|
756
|
+
"trivial": 1,
|
|
757
|
+
"must": 1,
|
|
758
|
+
"ship": 1,
|
|
759
|
+
"an": 1,
|
|
760
|
+
"in": 1,
|
|
761
|
+
"rfcs": 1
|
|
762
|
+
}
|
|
763
|
+
},
|
|
764
|
+
{
|
|
765
|
+
"id": "deploy_guide",
|
|
766
|
+
"title": "FastScript Deploy Guide",
|
|
767
|
+
"path": "/docs/deploy_guide",
|
|
768
|
+
"summary": "- `node/pm2`: stable",
|
|
769
|
+
"terms": {
|
|
770
|
+
"1": 3,
|
|
771
|
+
"2": 3,
|
|
772
|
+
"3": 3,
|
|
773
|
+
"4": 1,
|
|
774
|
+
"fastscript": 4,
|
|
775
|
+
"deploy": 6,
|
|
776
|
+
"guide": 2,
|
|
777
|
+
"node": 5,
|
|
778
|
+
"pm2": 4,
|
|
779
|
+
"stable": 5,
|
|
780
|
+
"support": 1,
|
|
781
|
+
"levels": 1,
|
|
782
|
+
"vercel": 5,
|
|
783
|
+
"catch": 2,
|
|
784
|
+
"all": 3,
|
|
785
|
+
"ssr": 4,
|
|
786
|
+
"api": 5,
|
|
787
|
+
"adapter": 2,
|
|
788
|
+
"cloudflare": 3,
|
|
789
|
+
"worker": 3,
|
|
790
|
+
"path": 1,
|
|
791
|
+
"npm": 5,
|
|
792
|
+
"run": 5,
|
|
793
|
+
"qa": 1,
|
|
794
|
+
"build": 2,
|
|
795
|
+
"start": 1,
|
|
796
|
+
"ecosystem": 1,
|
|
797
|
+
"config": 1,
|
|
798
|
+
"cjs": 1,
|
|
799
|
+
"required": 2,
|
|
800
|
+
"env": 2,
|
|
801
|
+
"production": 2,
|
|
802
|
+
"port": 1,
|
|
803
|
+
"session": 1,
|
|
804
|
+
"secret": 1,
|
|
805
|
+
"in": 2,
|
|
806
|
+
"commit": 2,
|
|
807
|
+
"generated": 2,
|
|
808
|
+
"json": 2,
|
|
809
|
+
"mjs": 1,
|
|
810
|
+
"import": 1,
|
|
811
|
+
"project": 1,
|
|
812
|
+
"notes": 2,
|
|
813
|
+
"uses": 1,
|
|
814
|
+
"one": 1,
|
|
815
|
+
"serverless": 1,
|
|
816
|
+
"handler": 1,
|
|
817
|
+
"for": 2,
|
|
818
|
+
"has": 1,
|
|
819
|
+
"immutable": 1,
|
|
820
|
+
"cache": 1,
|
|
821
|
+
"headers": 1,
|
|
822
|
+
"hashed": 1,
|
|
823
|
+
"assets": 1,
|
|
824
|
+
"wrangler": 2,
|
|
825
|
+
"toml": 1,
|
|
826
|
+
"and": 2,
|
|
827
|
+
"dist": 2,
|
|
828
|
+
"js": 1,
|
|
829
|
+
"handles": 1,
|
|
830
|
+
"routes": 2,
|
|
831
|
+
"middleware": 1,
|
|
832
|
+
"static": 1,
|
|
833
|
+
"asset": 1,
|
|
834
|
+
"pass": 1,
|
|
835
|
+
"through": 1,
|
|
836
|
+
"requires": 1,
|
|
837
|
+
"current": 1,
|
|
838
|
+
"artifacts": 1,
|
|
839
|
+
"manifest": 1
|
|
840
|
+
}
|
|
841
|
+
},
|
|
842
|
+
{
|
|
843
|
+
"id": "ecosystem_adoption_loop",
|
|
844
|
+
"title": "Ecosystem Adoption Loop",
|
|
845
|
+
"path": "/docs/ecosystem_adoption_loop",
|
|
846
|
+
"summary": "1. Ship production-ready examples (`examples/startup-mvp`, `examples/fullstack`).",
|
|
847
|
+
"terms": {
|
|
848
|
+
"1": 2,
|
|
849
|
+
"2": 1,
|
|
850
|
+
"3": 1,
|
|
851
|
+
"4": 1,
|
|
852
|
+
"5": 1,
|
|
853
|
+
"ecosystem": 2,
|
|
854
|
+
"adoption": 2,
|
|
855
|
+
"loop": 2,
|
|
856
|
+
"ship": 2,
|
|
857
|
+
"production": 2,
|
|
858
|
+
"ready": 2,
|
|
859
|
+
"examples": 6,
|
|
860
|
+
"startup": 2,
|
|
861
|
+
"mvp": 2,
|
|
862
|
+
"fullstack": 2,
|
|
863
|
+
"publish": 1,
|
|
864
|
+
"plugin": 1,
|
|
865
|
+
"metadata": 1,
|
|
866
|
+
"via": 1,
|
|
867
|
+
"agents": 1,
|
|
868
|
+
"plugins": 1,
|
|
869
|
+
"marketplace": 1,
|
|
870
|
+
"json": 1,
|
|
871
|
+
"run": 1,
|
|
872
|
+
"migration": 1,
|
|
873
|
+
"packs": 1,
|
|
874
|
+
"and": 2,
|
|
875
|
+
"case": 1,
|
|
876
|
+
"studies": 1,
|
|
877
|
+
"for": 1,
|
|
878
|
+
"onboarding": 1,
|
|
879
|
+
"track": 1,
|
|
880
|
+
"kpi": 1,
|
|
881
|
+
"outcomes": 1,
|
|
882
|
+
"weekly": 1,
|
|
883
|
+
"feed": 1,
|
|
884
|
+
"improvements": 1,
|
|
885
|
+
"into": 1,
|
|
886
|
+
"docs": 1,
|
|
887
|
+
"templates": 1,
|
|
888
|
+
"maintain": 1,
|
|
889
|
+
"community": 1,
|
|
890
|
+
"support": 1,
|
|
891
|
+
"playbook": 1,
|
|
892
|
+
"issues": 1,
|
|
893
|
+
"discussions": 1,
|
|
894
|
+
"office": 1,
|
|
895
|
+
"hours": 1
|
|
896
|
+
}
|
|
897
|
+
},
|
|
898
|
+
{
|
|
899
|
+
"id": "edge_runtime_parity",
|
|
900
|
+
"title": "Edge Runtime Parity Matrix",
|
|
901
|
+
"path": "/docs/edge_runtime_parity",
|
|
902
|
+
"summary": "| Capability | Node Runtime | Vercel Adapter | Cloudflare Adapter |",
|
|
903
|
+
"terms": {
|
|
904
|
+
"edge": 2,
|
|
905
|
+
"runtime": 4,
|
|
906
|
+
"parity": 2,
|
|
907
|
+
"matrix": 2,
|
|
908
|
+
"capability": 2,
|
|
909
|
+
"node": 2,
|
|
910
|
+
"vercel": 2,
|
|
911
|
+
"adapter": 4,
|
|
912
|
+
"cloudflare": 2,
|
|
913
|
+
"ssr": 1,
|
|
914
|
+
"routes": 2,
|
|
915
|
+
"yes": 19,
|
|
916
|
+
"api": 1,
|
|
917
|
+
"middleware": 1,
|
|
918
|
+
"cache": 1,
|
|
919
|
+
"tags": 1,
|
|
920
|
+
"invalidation": 1,
|
|
921
|
+
"storage": 1,
|
|
922
|
+
"signed": 1,
|
|
923
|
+
"urls": 1,
|
|
924
|
+
"queue": 1,
|
|
925
|
+
"worker": 3,
|
|
926
|
+
"partial": 2,
|
|
927
|
+
"external": 2,
|
|
928
|
+
"pwa": 1,
|
|
929
|
+
"assets": 1
|
|
930
|
+
}
|
|
931
|
+
},
|
|
932
|
+
{
|
|
933
|
+
"id": "governance_versioning_policy",
|
|
934
|
+
"title": "GOVERNANCE_VERSIONING_POLICY",
|
|
935
|
+
"path": "/docs/governance_versioning_policy",
|
|
936
|
+
"summary": "This policy governs FastScript language/runtime changes beginning with Language v1.",
|
|
937
|
+
"terms": {
|
|
938
|
+
"1": 2,
|
|
939
|
+
"2": 2,
|
|
940
|
+
"3": 2,
|
|
941
|
+
"4": 2,
|
|
942
|
+
"5": 1,
|
|
943
|
+
"6": 1,
|
|
944
|
+
"7": 1,
|
|
945
|
+
"8": 1,
|
|
946
|
+
"governance": 2,
|
|
947
|
+
"versioning": 3,
|
|
948
|
+
"policy": 5,
|
|
949
|
+
"this": 2,
|
|
950
|
+
"governs": 2,
|
|
951
|
+
"fastscript": 4,
|
|
952
|
+
"language": 7,
|
|
953
|
+
"runtime": 6,
|
|
954
|
+
"changes": 7,
|
|
955
|
+
"beginning": 2,
|
|
956
|
+
"with": 3,
|
|
957
|
+
"v1": 4,
|
|
958
|
+
"and": 5,
|
|
959
|
+
"scope": 1,
|
|
960
|
+
"semantic": 1,
|
|
961
|
+
"rules": 1,
|
|
962
|
+
"major": 3,
|
|
963
|
+
"any": 3,
|
|
964
|
+
"breaking": 3,
|
|
965
|
+
"change": 6,
|
|
966
|
+
"to": 2,
|
|
967
|
+
"syntax": 4,
|
|
968
|
+
"behavior": 2,
|
|
969
|
+
"cli": 2,
|
|
970
|
+
"contracts": 3,
|
|
971
|
+
"diagnostics": 1,
|
|
972
|
+
"codes": 1,
|
|
973
|
+
"or": 3,
|
|
974
|
+
"generated": 1,
|
|
975
|
+
"output": 1,
|
|
976
|
+
"minor": 4,
|
|
977
|
+
"backward": 2,
|
|
978
|
+
"compatible": 3,
|
|
979
|
+
"feature": 1,
|
|
980
|
+
"additions": 1,
|
|
981
|
+
"patch": 2,
|
|
982
|
+
"bug": 1,
|
|
983
|
+
"correctness": 1,
|
|
984
|
+
"fixes": 1,
|
|
985
|
+
"definition": 1,
|
|
986
|
+
"a": 2,
|
|
987
|
+
"is": 3,
|
|
988
|
+
"if": 1,
|
|
989
|
+
"of": 1,
|
|
990
|
+
"the": 1,
|
|
991
|
+
"following": 1,
|
|
992
|
+
"occurs": 2,
|
|
993
|
+
"valid": 2,
|
|
994
|
+
"source": 2,
|
|
995
|
+
"fails": 1,
|
|
996
|
+
"parse": 1,
|
|
997
|
+
"typecheck": 1,
|
|
998
|
+
"lint": 1,
|
|
999
|
+
"without": 2,
|
|
1000
|
+
"opt": 1,
|
|
1001
|
+
"in": 4,
|
|
1002
|
+
"flags": 1,
|
|
1003
|
+
"for": 3,
|
|
1004
|
+
"previously": 1,
|
|
1005
|
+
"programs": 1,
|
|
1006
|
+
"stable": 4,
|
|
1007
|
+
"diagnostic": 2,
|
|
1008
|
+
"code": 2,
|
|
1009
|
+
"removed": 2,
|
|
1010
|
+
"semantics": 1,
|
|
1011
|
+
"materially": 1,
|
|
1012
|
+
"aliasing": 1,
|
|
1013
|
+
"ast": 1,
|
|
1014
|
+
"cst": 1,
|
|
1015
|
+
"map": 1,
|
|
1016
|
+
"schema": 1,
|
|
1017
|
+
"incompatibly": 1,
|
|
1018
|
+
"command": 1,
|
|
1019
|
+
"flag": 2,
|
|
1020
|
+
"are": 2,
|
|
1021
|
+
"renamed": 1,
|
|
1022
|
+
"rfc": 2,
|
|
1023
|
+
"workflow": 1,
|
|
1024
|
+
"required": 2,
|
|
1025
|
+
"non": 1,
|
|
1026
|
+
"trivial": 1,
|
|
1027
|
+
"open": 1,
|
|
1028
|
+
"spec": 3,
|
|
1029
|
+
"rfcs": 2,
|
|
1030
|
+
"using": 1,
|
|
1031
|
+
"0000": 1,
|
|
1032
|
+
"template": 1,
|
|
1033
|
+
"md": 2,
|
|
1034
|
+
"include": 3,
|
|
1035
|
+
"motivation": 1,
|
|
1036
|
+
"exact": 2,
|
|
1037
|
+
"grammar": 2,
|
|
1038
|
+
"deltas": 1,
|
|
1039
|
+
"migration": 3,
|
|
1040
|
+
"rollback": 2,
|
|
1041
|
+
"keep": 1,
|
|
1042
|
+
"review": 1,
|
|
1043
|
+
"window": 1,
|
|
1044
|
+
"owners": 1,
|
|
1045
|
+
"land": 1,
|
|
1046
|
+
"behind": 1,
|
|
1047
|
+
"risky": 1,
|
|
1048
|
+
"promote": 1,
|
|
1049
|
+
"after": 2,
|
|
1050
|
+
"conformance": 1,
|
|
1051
|
+
"qa": 3,
|
|
1052
|
+
"gates": 3,
|
|
1053
|
+
"pass": 1,
|
|
1054
|
+
"deprecation": 2,
|
|
1055
|
+
"minimum": 1,
|
|
1056
|
+
"period": 1,
|
|
1057
|
+
"one": 1,
|
|
1058
|
+
"release": 4,
|
|
1059
|
+
"cycle": 1,
|
|
1060
|
+
"deprecations": 1,
|
|
1061
|
+
"must": 2,
|
|
1062
|
+
"warning": 1,
|
|
1063
|
+
"guidance": 1,
|
|
1064
|
+
"changelog": 1,
|
|
1065
|
+
"entry": 1,
|
|
1066
|
+
"removal": 1,
|
|
1067
|
+
"only": 1,
|
|
1068
|
+
"next": 1,
|
|
1069
|
+
"stability": 1,
|
|
1070
|
+
"commitments": 1,
|
|
1071
|
+
"state": 1,
|
|
1072
|
+
"fn": 1,
|
|
1073
|
+
"js": 1,
|
|
1074
|
+
"module": 1,
|
|
1075
|
+
"existing": 1,
|
|
1076
|
+
"forms": 1,
|
|
1077
|
+
"never": 1,
|
|
1078
|
+
"repurposed": 1,
|
|
1079
|
+
"releases": 1,
|
|
1080
|
+
"merge": 2,
|
|
1081
|
+
"npm": 3,
|
|
1082
|
+
"run": 3,
|
|
1083
|
+
"gate": 2,
|
|
1084
|
+
"all": 1,
|
|
1085
|
+
"checklist": 2,
|
|
1086
|
+
"completion": 1,
|
|
1087
|
+
"security": 1,
|
|
1088
|
+
"audit": 1,
|
|
1089
|
+
"evidence": 1,
|
|
1090
|
+
"publication": 1,
|
|
1091
|
+
"notes": 1,
|
|
1092
|
+
"requirement": 1,
|
|
1093
|
+
"user": 1,
|
|
1094
|
+
"visible": 1,
|
|
1095
|
+
"behavioral": 1,
|
|
1096
|
+
"before": 1,
|
|
1097
|
+
"examples": 1,
|
|
1098
|
+
"risk": 1,
|
|
1099
|
+
"classification": 1,
|
|
1100
|
+
"fallback": 1,
|
|
1101
|
+
"strategy": 1,
|
|
1102
|
+
"version": 1,
|
|
1103
|
+
"where": 1,
|
|
1104
|
+
"lands": 1
|
|
1105
|
+
}
|
|
1106
|
+
},
|
|
1107
|
+
{
|
|
1108
|
+
"id": "incident_playbook",
|
|
1109
|
+
"title": "INCIDENT_PLAYBOOK",
|
|
1110
|
+
"path": "/docs/incident_playbook",
|
|
1111
|
+
"summary": "- P0: active outage, data loss, auth bypass, or critical security exploit",
|
|
1112
|
+
"terms": {
|
|
1113
|
+
"1": 2,
|
|
1114
|
+
"2": 2,
|
|
1115
|
+
"3": 2,
|
|
1116
|
+
"4": 2,
|
|
1117
|
+
"48": 1,
|
|
1118
|
+
"incident": 6,
|
|
1119
|
+
"playbook": 2,
|
|
1120
|
+
"p0": 2,
|
|
1121
|
+
"active": 2,
|
|
1122
|
+
"outage": 2,
|
|
1123
|
+
"data": 2,
|
|
1124
|
+
"loss": 2,
|
|
1125
|
+
"auth": 2,
|
|
1126
|
+
"bypass": 2,
|
|
1127
|
+
"or": 2,
|
|
1128
|
+
"critical": 3,
|
|
1129
|
+
"security": 2,
|
|
1130
|
+
"exploit": 2,
|
|
1131
|
+
"fastscript": 1,
|
|
1132
|
+
"severity": 2,
|
|
1133
|
+
"levels": 1,
|
|
1134
|
+
"p1": 1,
|
|
1135
|
+
"severe": 1,
|
|
1136
|
+
"degradation": 2,
|
|
1137
|
+
"with": 3,
|
|
1138
|
+
"user": 2,
|
|
1139
|
+
"facing": 1,
|
|
1140
|
+
"impact": 2,
|
|
1141
|
+
"p2": 1,
|
|
1142
|
+
"partial": 1,
|
|
1143
|
+
"workaround": 1,
|
|
1144
|
+
"exists": 1,
|
|
1145
|
+
"p3": 1,
|
|
1146
|
+
"non": 2,
|
|
1147
|
+
"defect": 1,
|
|
1148
|
+
"on": 1,
|
|
1149
|
+
"call": 1,
|
|
1150
|
+
"response": 1,
|
|
1151
|
+
"acknowledge": 1,
|
|
1152
|
+
"and": 9,
|
|
1153
|
+
"open": 1,
|
|
1154
|
+
"timeline": 2,
|
|
1155
|
+
"log": 1,
|
|
1156
|
+
"assign": 1,
|
|
1157
|
+
"commander": 1,
|
|
1158
|
+
"owner": 1,
|
|
1159
|
+
"freeze": 1,
|
|
1160
|
+
"deploys": 1,
|
|
1161
|
+
"classify": 1,
|
|
1162
|
+
"blast": 1,
|
|
1163
|
+
"radius": 1,
|
|
1164
|
+
"immediate": 1,
|
|
1165
|
+
"containment": 1,
|
|
1166
|
+
"roll": 1,
|
|
1167
|
+
"back": 1,
|
|
1168
|
+
"to": 1,
|
|
1169
|
+
"last": 1,
|
|
1170
|
+
"known": 1,
|
|
1171
|
+
"good": 1,
|
|
1172
|
+
"artifact": 1,
|
|
1173
|
+
"npm": 6,
|
|
1174
|
+
"run": 7,
|
|
1175
|
+
"rollback": 1,
|
|
1176
|
+
"drill": 1,
|
|
1177
|
+
"process": 1,
|
|
1178
|
+
"disable": 1,
|
|
1179
|
+
"high": 1,
|
|
1180
|
+
"risk": 1,
|
|
1181
|
+
"integrations": 1,
|
|
1182
|
+
"webhooks": 1,
|
|
1183
|
+
"jobs": 2,
|
|
1184
|
+
"if": 1,
|
|
1185
|
+
"needed": 1,
|
|
1186
|
+
"rotate": 1,
|
|
1187
|
+
"session": 1,
|
|
1188
|
+
"secret": 1,
|
|
1189
|
+
"any": 1,
|
|
1190
|
+
"impacted": 1,
|
|
1191
|
+
"credentials": 1,
|
|
1192
|
+
"rate": 1,
|
|
1193
|
+
"limit": 1,
|
|
1194
|
+
"abusive": 1,
|
|
1195
|
+
"paths": 1,
|
|
1196
|
+
"block": 1,
|
|
1197
|
+
"malicious": 1,
|
|
1198
|
+
"signatures": 1,
|
|
1199
|
+
"recovery": 1,
|
|
1200
|
+
"workflow": 1,
|
|
1201
|
+
"restore": 3,
|
|
1202
|
+
"service": 1,
|
|
1203
|
+
"baseline": 1,
|
|
1204
|
+
"smoke": 2,
|
|
1205
|
+
"start": 1,
|
|
1206
|
+
"key": 1,
|
|
1207
|
+
"api": 1,
|
|
1208
|
+
"checks": 1,
|
|
1209
|
+
"validate": 1,
|
|
1210
|
+
"metrics": 2,
|
|
1211
|
+
"5xx": 1,
|
|
1212
|
+
"latency": 1,
|
|
1213
|
+
"trend": 1,
|
|
1214
|
+
"re": 1,
|
|
1215
|
+
"enable": 1,
|
|
1216
|
+
"paused": 1,
|
|
1217
|
+
"subsystems": 1,
|
|
1218
|
+
"in": 1,
|
|
1219
|
+
"stages": 1,
|
|
1220
|
+
"evidence": 1,
|
|
1221
|
+
"communication": 1,
|
|
1222
|
+
"record": 1,
|
|
1223
|
+
"all": 1,
|
|
1224
|
+
"commands": 2,
|
|
1225
|
+
"versions": 1,
|
|
1226
|
+
"timestamps": 1,
|
|
1227
|
+
"publish": 1,
|
|
1228
|
+
"status": 1,
|
|
1229
|
+
"updates": 1,
|
|
1230
|
+
"eta": 1,
|
|
1231
|
+
"mitigation": 1,
|
|
1232
|
+
"steps": 1,
|
|
1233
|
+
"create": 2,
|
|
1234
|
+
"post": 1,
|
|
1235
|
+
"report": 1,
|
|
1236
|
+
"within": 1,
|
|
1237
|
+
"hours": 1,
|
|
1238
|
+
"postmortem": 1,
|
|
1239
|
+
"requirements": 1,
|
|
1240
|
+
"root": 1,
|
|
1241
|
+
"cause": 1,
|
|
1242
|
+
"contributing": 1,
|
|
1243
|
+
"factors": 1,
|
|
1244
|
+
"corrective": 1,
|
|
1245
|
+
"actions": 1,
|
|
1246
|
+
"owners": 1,
|
|
1247
|
+
"dates": 1,
|
|
1248
|
+
"verification": 1,
|
|
1249
|
+
"test": 1,
|
|
1250
|
+
"additions": 1,
|
|
1251
|
+
"operational": 1,
|
|
1252
|
+
"backup": 6,
|
|
1253
|
+
"now": 1,
|
|
1254
|
+
"verify": 2,
|
|
1255
|
+
"from": 1,
|
|
1256
|
+
"path": 1,
|
|
1257
|
+
"replay": 2,
|
|
1258
|
+
"dead": 2,
|
|
1259
|
+
"letter": 2,
|
|
1260
|
+
"worker": 1
|
|
1261
|
+
}
|
|
1262
|
+
},
|
|
1263
|
+
{
|
|
1264
|
+
"id": "interop_matrix",
|
|
1265
|
+
"title": "FastScript Interop Matrix",
|
|
1266
|
+
"path": "/docs/interop_matrix",
|
|
1267
|
+
"summary": "- Generated: 2026-04-14T07:04:23.711Z",
|
|
1268
|
+
"terms": {
|
|
1269
|
+
"0": 1,
|
|
1270
|
+
"13": 2,
|
|
1271
|
+
"23": 2,
|
|
1272
|
+
"163": 1,
|
|
1273
|
+
"174": 1,
|
|
1274
|
+
"209": 1,
|
|
1275
|
+
"226": 1,
|
|
1276
|
+
"340": 1,
|
|
1277
|
+
"365": 1,
|
|
1278
|
+
"386": 1,
|
|
1279
|
+
"528": 1,
|
|
1280
|
+
"618": 1,
|
|
1281
|
+
"1809": 1,
|
|
1282
|
+
"2026": 2,
|
|
1283
|
+
"9438": 1,
|
|
1284
|
+
"31834": 1,
|
|
1285
|
+
"200464": 1,
|
|
1286
|
+
"fastscript": 17,
|
|
1287
|
+
"interop": 4,
|
|
1288
|
+
"matrix": 3,
|
|
1289
|
+
"generated": 2,
|
|
1290
|
+
"04": 4,
|
|
1291
|
+
"14t07": 2,
|
|
1292
|
+
"711z": 2,
|
|
1293
|
+
"profile": 1,
|
|
1294
|
+
"test": 1,
|
|
1295
|
+
"total": 1,
|
|
1296
|
+
"pass": 14,
|
|
1297
|
+
"fail": 1,
|
|
1298
|
+
"includes": 1,
|
|
1299
|
+
"framework": 7,
|
|
1300
|
+
"api": 3,
|
|
1301
|
+
"compatibility": 1,
|
|
1302
|
+
"shims": 1,
|
|
1303
|
+
"for": 1,
|
|
1304
|
+
"react": 5,
|
|
1305
|
+
"next": 4,
|
|
1306
|
+
"link": 3,
|
|
1307
|
+
"vue": 4,
|
|
1308
|
+
"svelte": 4,
|
|
1309
|
+
"store": 3,
|
|
1310
|
+
"preact": 4,
|
|
1311
|
+
"and": 3,
|
|
1312
|
+
"solid": 4,
|
|
1313
|
+
"js": 6,
|
|
1314
|
+
"scoped": 3,
|
|
1315
|
+
"subpath": 3,
|
|
1316
|
+
"dual": 5,
|
|
1317
|
+
"mode": 5,
|
|
1318
|
+
"package": 8,
|
|
1319
|
+
"checks": 3,
|
|
1320
|
+
"runtime": 2,
|
|
1321
|
+
"edge": 2,
|
|
1322
|
+
"lib": 2,
|
|
1323
|
+
"real": 7,
|
|
1324
|
+
"npm": 12,
|
|
1325
|
+
"using": 1,
|
|
1326
|
+
"installed": 1,
|
|
1327
|
+
"dependencies": 4,
|
|
1328
|
+
"acorn": 6,
|
|
1329
|
+
"walk": 3,
|
|
1330
|
+
"astring": 3,
|
|
1331
|
+
"node": 14,
|
|
1332
|
+
"built": 2,
|
|
1333
|
+
"in": 1,
|
|
1334
|
+
"commonjs": 2,
|
|
1335
|
+
"case": 1,
|
|
1336
|
+
"target": 1,
|
|
1337
|
+
"kind": 1,
|
|
1338
|
+
"platform": 1,
|
|
1339
|
+
"status": 1,
|
|
1340
|
+
"bundle": 1,
|
|
1341
|
+
"bytes": 1,
|
|
1342
|
+
"notes": 1,
|
|
1343
|
+
"core": 4,
|
|
1344
|
+
"fs": 10,
|
|
1345
|
+
"browser": 6,
|
|
1346
|
+
"module": 10,
|
|
1347
|
+
"imports": 10,
|
|
1348
|
+
"dom": 1,
|
|
1349
|
+
"client": 1,
|
|
1350
|
+
"shape": 1,
|
|
1351
|
+
"createapp": 1,
|
|
1352
|
+
"h": 2,
|
|
1353
|
+
"writable": 1,
|
|
1354
|
+
"render": 1,
|
|
1355
|
+
"signals": 1,
|
|
1356
|
+
"export": 2,
|
|
1357
|
+
"through": 1,
|
|
1358
|
+
"esm": 1,
|
|
1359
|
+
"condition": 1,
|
|
1360
|
+
"cjs": 1,
|
|
1361
|
+
"left": 1,
|
|
1362
|
+
"pad": 1,
|
|
1363
|
+
"builtins": 1,
|
|
1364
|
+
"crypto": 1,
|
|
1365
|
+
"path": 1,
|
|
1366
|
+
"ins": 1,
|
|
1367
|
+
"from": 3,
|
|
1368
|
+
"failures": 1,
|
|
1369
|
+
"none": 1
|
|
1370
|
+
}
|
|
1371
|
+
},
|
|
1372
|
+
{
|
|
1373
|
+
"id": "interop_rules",
|
|
1374
|
+
"title": "INTEROP_RULES",
|
|
1375
|
+
"path": "/docs/interop_rules",
|
|
1376
|
+
"summary": "1. Prefer ESM imports.",
|
|
1377
|
+
"terms": {
|
|
1378
|
+
"1": 2,
|
|
1379
|
+
"2": 1,
|
|
1380
|
+
"3": 1,
|
|
1381
|
+
"4": 1,
|
|
1382
|
+
"5": 1,
|
|
1383
|
+
"interop": 2,
|
|
1384
|
+
"rules": 2,
|
|
1385
|
+
"prefer": 2,
|
|
1386
|
+
"esm": 2,
|
|
1387
|
+
"imports": 2,
|
|
1388
|
+
"fastscript": 1,
|
|
1389
|
+
"cjs": 2,
|
|
1390
|
+
"is": 1,
|
|
1391
|
+
"supported": 1,
|
|
1392
|
+
"via": 1,
|
|
1393
|
+
"esbuild": 1,
|
|
1394
|
+
"bundling": 1,
|
|
1395
|
+
"fs": 1,
|
|
1396
|
+
"can": 1,
|
|
1397
|
+
"import": 1,
|
|
1398
|
+
"js": 1,
|
|
1399
|
+
"mjs": 1,
|
|
1400
|
+
"json": 1,
|
|
1401
|
+
"importany": 1,
|
|
1402
|
+
"handles": 1,
|
|
1403
|
+
"default": 2,
|
|
1404
|
+
"only": 1,
|
|
1405
|
+
"modules": 1,
|
|
1406
|
+
"use": 1,
|
|
1407
|
+
"resolveexport": 1,
|
|
1408
|
+
"mod": 1,
|
|
1409
|
+
"named": 1,
|
|
1410
|
+
"for": 1,
|
|
1411
|
+
"unknown": 1,
|
|
1412
|
+
"module": 1,
|
|
1413
|
+
"shapes": 1
|
|
1414
|
+
}
|
|
1415
|
+
},
|
|
1416
|
+
{
|
|
1417
|
+
"id": "known_limitations",
|
|
1418
|
+
"title": "FastScript Known Limitations",
|
|
1419
|
+
"path": "/docs/known_limitations",
|
|
1420
|
+
"summary": "- Runtime database in core server path is file-backed by default.",
|
|
1421
|
+
"terms": {
|
|
1422
|
+
"fastscript": 2,
|
|
1423
|
+
"known": 2,
|
|
1424
|
+
"limitations": 2,
|
|
1425
|
+
"runtime": 2,
|
|
1426
|
+
"database": 2,
|
|
1427
|
+
"in": 3,
|
|
1428
|
+
"core": 2,
|
|
1429
|
+
"server": 2,
|
|
1430
|
+
"path": 2,
|
|
1431
|
+
"is": 4,
|
|
1432
|
+
"file": 2,
|
|
1433
|
+
"backed": 2,
|
|
1434
|
+
"by": 2,
|
|
1435
|
+
"default": 2,
|
|
1436
|
+
"css": 3,
|
|
1437
|
+
"validation": 1,
|
|
1438
|
+
"enforces": 1,
|
|
1439
|
+
"token": 1,
|
|
1440
|
+
"discipline": 1,
|
|
1441
|
+
"for": 2,
|
|
1442
|
+
"app": 1,
|
|
1443
|
+
"styles": 1,
|
|
1444
|
+
"and": 1,
|
|
1445
|
+
"class": 1,
|
|
1446
|
+
"usage": 1,
|
|
1447
|
+
"route": 1,
|
|
1448
|
+
"files": 1,
|
|
1449
|
+
"it": 2,
|
|
1450
|
+
"not": 2,
|
|
1451
|
+
"a": 1,
|
|
1452
|
+
"full": 2,
|
|
1453
|
+
"parser": 1,
|
|
1454
|
+
"lsp": 1,
|
|
1455
|
+
"still": 1,
|
|
1456
|
+
"does": 1,
|
|
1457
|
+
"perform": 1,
|
|
1458
|
+
"project": 1,
|
|
1459
|
+
"wide": 1,
|
|
1460
|
+
"type": 2,
|
|
1461
|
+
"analysis": 1,
|
|
1462
|
+
"document": 1,
|
|
1463
|
+
"centric": 1,
|
|
1464
|
+
"inference": 1,
|
|
1465
|
+
"remains": 1,
|
|
1466
|
+
"conservative": 1,
|
|
1467
|
+
"highly": 1,
|
|
1468
|
+
"dynamic": 1,
|
|
1469
|
+
"metaprogramming": 1,
|
|
1470
|
+
"patterns": 1
|
|
1471
|
+
}
|
|
1472
|
+
},
|
|
1473
|
+
{
|
|
1474
|
+
"id": "language_v1_migration",
|
|
1475
|
+
"title": "FastScript Language v1 Migration Notes",
|
|
1476
|
+
"path": "/docs/language_v1_migration",
|
|
1477
|
+
"summary": "- Teams upgrading from pre-v1 parser/formatter/typecheck behavior.",
|
|
1478
|
+
"terms": {
|
|
1479
|
+
"1": 2,
|
|
1480
|
+
"2": 2,
|
|
1481
|
+
"3": 2,
|
|
1482
|
+
"4": 2,
|
|
1483
|
+
"5": 2,
|
|
1484
|
+
"6": 1,
|
|
1485
|
+
"fastscript": 3,
|
|
1486
|
+
"language": 2,
|
|
1487
|
+
"v1": 4,
|
|
1488
|
+
"migration": 2,
|
|
1489
|
+
"notes": 3,
|
|
1490
|
+
"teams": 2,
|
|
1491
|
+
"upgrading": 2,
|
|
1492
|
+
"from": 3,
|
|
1493
|
+
"pre": 2,
|
|
1494
|
+
"parser": 3,
|
|
1495
|
+
"formatter": 3,
|
|
1496
|
+
"typecheck": 4,
|
|
1497
|
+
"behavior": 3,
|
|
1498
|
+
"who": 1,
|
|
1499
|
+
"should": 1,
|
|
1500
|
+
"read": 1,
|
|
1501
|
+
"this": 1,
|
|
1502
|
+
"plugin": 1,
|
|
1503
|
+
"tool": 1,
|
|
1504
|
+
"authors": 1,
|
|
1505
|
+
"consuming": 1,
|
|
1506
|
+
"diagnostics": 3,
|
|
1507
|
+
"or": 1,
|
|
1508
|
+
"generated": 2,
|
|
1509
|
+
"output": 2,
|
|
1510
|
+
"key": 1,
|
|
1511
|
+
"changes": 2,
|
|
1512
|
+
"fs": 5,
|
|
1513
|
+
"parsing": 1,
|
|
1514
|
+
"now": 4,
|
|
1515
|
+
"uses": 1,
|
|
1516
|
+
"full": 2,
|
|
1517
|
+
"ecmascript": 1,
|
|
1518
|
+
"module": 1,
|
|
1519
|
+
"grammar": 1,
|
|
1520
|
+
"with": 1,
|
|
1521
|
+
"declaration": 1,
|
|
1522
|
+
"rewrites": 2,
|
|
1523
|
+
"is": 4,
|
|
1524
|
+
"ast": 2,
|
|
1525
|
+
"based": 1,
|
|
1526
|
+
"and": 7,
|
|
1527
|
+
"canonicalizes": 1,
|
|
1528
|
+
"to": 4,
|
|
1529
|
+
"valid": 2,
|
|
1530
|
+
"javascript": 1,
|
|
1531
|
+
"structure": 1,
|
|
1532
|
+
"linter": 1,
|
|
1533
|
+
"cst": 1,
|
|
1534
|
+
"aware": 1,
|
|
1535
|
+
"supports": 1,
|
|
1536
|
+
"safe": 2,
|
|
1537
|
+
"autofix": 1,
|
|
1538
|
+
"fix": 2,
|
|
1539
|
+
"type": 2,
|
|
1540
|
+
"checker": 1,
|
|
1541
|
+
"performs": 1,
|
|
1542
|
+
"semantic": 2,
|
|
1543
|
+
"analysis": 1,
|
|
1544
|
+
"not": 1,
|
|
1545
|
+
"just": 1,
|
|
1546
|
+
"route": 1,
|
|
1547
|
+
"shape": 1,
|
|
1548
|
+
"checks": 1,
|
|
1549
|
+
"include": 1,
|
|
1550
|
+
"stable": 1,
|
|
1551
|
+
"codes": 1,
|
|
1552
|
+
"richer": 1,
|
|
1553
|
+
"spans": 1,
|
|
1554
|
+
"related": 1,
|
|
1555
|
+
"context": 1,
|
|
1556
|
+
"metadata": 1,
|
|
1557
|
+
"source": 1,
|
|
1558
|
+
"map": 1,
|
|
1559
|
+
"chaining": 1,
|
|
1560
|
+
"emitted": 1,
|
|
1561
|
+
"normalization": 2,
|
|
1562
|
+
"into": 1,
|
|
1563
|
+
"esbuild": 1,
|
|
1564
|
+
"potentially": 1,
|
|
1565
|
+
"visible": 1,
|
|
1566
|
+
"fn": 1,
|
|
1567
|
+
"state": 1,
|
|
1568
|
+
"declarations": 1,
|
|
1569
|
+
"are": 3,
|
|
1570
|
+
"normalized": 1,
|
|
1571
|
+
"function": 1,
|
|
1572
|
+
"let": 1,
|
|
1573
|
+
"in": 2,
|
|
1574
|
+
"code": 1,
|
|
1575
|
+
"interface": 1,
|
|
1576
|
+
"enum": 1,
|
|
1577
|
+
"reported": 1,
|
|
1578
|
+
"removed": 1,
|
|
1579
|
+
"during": 1,
|
|
1580
|
+
"lenient": 1,
|
|
1581
|
+
"new": 2,
|
|
1582
|
+
"errors": 1,
|
|
1583
|
+
"fs410x": 2,
|
|
1584
|
+
"can": 1,
|
|
1585
|
+
"fail": 2,
|
|
1586
|
+
"mode": 1,
|
|
1587
|
+
"format": 2,
|
|
1588
|
+
"check": 1,
|
|
1589
|
+
"may": 1,
|
|
1590
|
+
"report": 1,
|
|
1591
|
+
"more": 1,
|
|
1592
|
+
"files": 1,
|
|
1593
|
+
"due": 1,
|
|
1594
|
+
"canonical": 2,
|
|
1595
|
+
"structural": 1,
|
|
1596
|
+
"formatting": 2,
|
|
1597
|
+
"recommended": 1,
|
|
1598
|
+
"rollout": 1,
|
|
1599
|
+
"sequence": 1,
|
|
1600
|
+
"run": 10,
|
|
1601
|
+
"npm": 5,
|
|
1602
|
+
"test": 1,
|
|
1603
|
+
"conformance": 1,
|
|
1604
|
+
"inspect": 1,
|
|
1605
|
+
"snapshot": 1,
|
|
1606
|
+
"deltas": 1,
|
|
1607
|
+
"lint": 2,
|
|
1608
|
+
"apply": 2,
|
|
1609
|
+
"resolve": 1,
|
|
1610
|
+
"gate": 1,
|
|
1611
|
+
"qa": 1,
|
|
1612
|
+
"all": 1,
|
|
1613
|
+
"backward": 1,
|
|
1614
|
+
"compatibility": 2,
|
|
1615
|
+
"runtime": 2,
|
|
1616
|
+
"for": 1,
|
|
1617
|
+
"modules": 1,
|
|
1618
|
+
"preserved": 1,
|
|
1619
|
+
"breaking": 1,
|
|
1620
|
+
"syntax": 1,
|
|
1621
|
+
"governed": 1,
|
|
1622
|
+
"by": 1,
|
|
1623
|
+
"docs": 1,
|
|
1624
|
+
"governance": 1,
|
|
1625
|
+
"versioning": 1,
|
|
1626
|
+
"policy": 1,
|
|
1627
|
+
"md": 1
|
|
1628
|
+
}
|
|
1629
|
+
},
|
|
1630
|
+
{
|
|
1631
|
+
"id": "lts_policy",
|
|
1632
|
+
"title": "LTS_POLICY",
|
|
1633
|
+
"path": "/docs/lts_policy",
|
|
1634
|
+
"summary": "- `current`: newest stable feature line",
|
|
1635
|
+
"terms": {
|
|
1636
|
+
"0": 2,
|
|
1637
|
+
"1": 3,
|
|
1638
|
+
"2": 1,
|
|
1639
|
+
"3": 2,
|
|
1640
|
+
"4": 1,
|
|
1641
|
+
"18": 1,
|
|
1642
|
+
"90": 1,
|
|
1643
|
+
"lts": 10,
|
|
1644
|
+
"policy": 3,
|
|
1645
|
+
"current": 4,
|
|
1646
|
+
"newest": 2,
|
|
1647
|
+
"stable": 2,
|
|
1648
|
+
"feature": 3,
|
|
1649
|
+
"line": 8,
|
|
1650
|
+
"fastscript": 1,
|
|
1651
|
+
"versioning": 2,
|
|
1652
|
+
"tracks": 1,
|
|
1653
|
+
"long": 1,
|
|
1654
|
+
"term": 1,
|
|
1655
|
+
"supported": 2,
|
|
1656
|
+
"after": 1,
|
|
1657
|
+
"stabilization": 1,
|
|
1658
|
+
"commitments": 1,
|
|
1659
|
+
"security": 1,
|
|
1660
|
+
"fixes": 1,
|
|
1661
|
+
"and": 2,
|
|
1662
|
+
"critical": 1,
|
|
1663
|
+
"reliability": 1,
|
|
1664
|
+
"patches": 1,
|
|
1665
|
+
"only": 1,
|
|
1666
|
+
"no": 2,
|
|
1667
|
+
"breaking": 1,
|
|
1668
|
+
"syntax": 1,
|
|
1669
|
+
"runtime": 2,
|
|
1670
|
+
"changes": 1,
|
|
1671
|
+
"inside": 1,
|
|
1672
|
+
"an": 1,
|
|
1673
|
+
"major": 1,
|
|
1674
|
+
"backports": 1,
|
|
1675
|
+
"must": 2,
|
|
1676
|
+
"include": 3,
|
|
1677
|
+
"test": 1,
|
|
1678
|
+
"evidence": 1,
|
|
1679
|
+
"migration": 2,
|
|
1680
|
+
"notes": 2,
|
|
1681
|
+
"support": 1,
|
|
1682
|
+
"windows": 1,
|
|
1683
|
+
"active": 1,
|
|
1684
|
+
"development": 1,
|
|
1685
|
+
"months": 2,
|
|
1686
|
+
"from": 1,
|
|
1687
|
+
"designation": 1,
|
|
1688
|
+
"overlap": 1,
|
|
1689
|
+
"window": 1,
|
|
1690
|
+
"when": 1,
|
|
1691
|
+
"next": 2,
|
|
1692
|
+
"is": 1,
|
|
1693
|
+
"introduced": 1,
|
|
1694
|
+
"backport": 2,
|
|
1695
|
+
"rules": 1,
|
|
1696
|
+
"patch": 2,
|
|
1697
|
+
"already": 1,
|
|
1698
|
+
"pass": 1,
|
|
1699
|
+
"on": 1,
|
|
1700
|
+
"schema": 1,
|
|
1701
|
+
"contract": 1,
|
|
1702
|
+
"break": 1,
|
|
1703
|
+
"in": 3,
|
|
1704
|
+
"explicit": 1,
|
|
1705
|
+
"changelog": 1,
|
|
1706
|
+
"annotation": 1,
|
|
1707
|
+
"rollback": 1,
|
|
1708
|
+
"procedure": 1,
|
|
1709
|
+
"release": 3,
|
|
1710
|
+
"end": 1,
|
|
1711
|
+
"of": 1,
|
|
1712
|
+
"life": 1,
|
|
1713
|
+
"eol": 2,
|
|
1714
|
+
"notice": 1,
|
|
1715
|
+
"published": 1,
|
|
1716
|
+
"at": 1,
|
|
1717
|
+
"least": 1,
|
|
1718
|
+
"days": 1,
|
|
1719
|
+
"advance": 1,
|
|
1720
|
+
"final": 1,
|
|
1721
|
+
"includes": 1,
|
|
1722
|
+
"checklist": 1,
|
|
1723
|
+
"to": 1,
|
|
1724
|
+
"governance": 2,
|
|
1725
|
+
"links": 1,
|
|
1726
|
+
"semver": 1,
|
|
1727
|
+
"rfc": 1,
|
|
1728
|
+
"docs": 3,
|
|
1729
|
+
"md": 3,
|
|
1730
|
+
"mechanics": 1,
|
|
1731
|
+
"process": 1,
|
|
1732
|
+
"readiness": 2,
|
|
1733
|
+
"matrix": 1,
|
|
1734
|
+
"v1": 1,
|
|
1735
|
+
"forever": 1
|
|
1736
|
+
}
|
|
1737
|
+
},
|
|
1738
|
+
{
|
|
1739
|
+
"id": "migration_case_studies",
|
|
1740
|
+
"title": "Migration Case Studies",
|
|
1741
|
+
"path": "/docs/migration_case_studies",
|
|
1742
|
+
"summary": "- Time to migrate: 2.5 hours",
|
|
1743
|
+
"terms": {
|
|
1744
|
+
"1": 1,
|
|
1745
|
+
"2": 2,
|
|
1746
|
+
"3": 1,
|
|
1747
|
+
"5": 3,
|
|
1748
|
+
"9": 1,
|
|
1749
|
+
"18": 1,
|
|
1750
|
+
"22": 1,
|
|
1751
|
+
"27": 1,
|
|
1752
|
+
"31": 1,
|
|
1753
|
+
"migration": 2,
|
|
1754
|
+
"case": 2,
|
|
1755
|
+
"studies": 2,
|
|
1756
|
+
"time": 5,
|
|
1757
|
+
"to": 4,
|
|
1758
|
+
"migrate": 4,
|
|
1759
|
+
"hours": 2,
|
|
1760
|
+
"startup": 1,
|
|
1761
|
+
"mvp": 1,
|
|
1762
|
+
"js": 1,
|
|
1763
|
+
"fs": 2,
|
|
1764
|
+
"build": 1,
|
|
1765
|
+
"size": 1,
|
|
1766
|
+
"reduction": 4,
|
|
1767
|
+
"p95": 1,
|
|
1768
|
+
"ssr": 2,
|
|
1769
|
+
"latency": 1,
|
|
1770
|
+
"fullstack": 1,
|
|
1771
|
+
"commerce": 1,
|
|
1772
|
+
"ts": 1,
|
|
1773
|
+
"days": 2,
|
|
1774
|
+
"bug": 1,
|
|
1775
|
+
"escape": 1,
|
|
1776
|
+
"deploy": 1,
|
|
1777
|
+
"success": 1,
|
|
1778
|
+
"rate": 1,
|
|
1779
|
+
"increase": 1,
|
|
1780
|
+
"legacy": 1,
|
|
1781
|
+
"node": 1,
|
|
1782
|
+
"mean": 1,
|
|
1783
|
+
"incident": 1,
|
|
1784
|
+
"recovery": 1,
|
|
1785
|
+
"queue": 1,
|
|
1786
|
+
"dead": 1,
|
|
1787
|
+
"letter": 1,
|
|
1788
|
+
"growth": 1,
|
|
1789
|
+
"reduced": 1,
|
|
1790
|
+
"by": 1,
|
|
1791
|
+
"introducing": 1,
|
|
1792
|
+
"replay": 1,
|
|
1793
|
+
"flow": 1,
|
|
1794
|
+
"tooling": 1
|
|
1795
|
+
}
|
|
1796
|
+
},
|
|
1797
|
+
{
|
|
1798
|
+
"id": "observability",
|
|
1799
|
+
"title": "FastScript Observability",
|
|
1800
|
+
"path": "/docs/observability",
|
|
1801
|
+
"summary": "- Structured request logs with request IDs.",
|
|
1802
|
+
"terms": {
|
|
1803
|
+
"1": 2,
|
|
1804
|
+
"5": 2,
|
|
1805
|
+
"10": 1,
|
|
1806
|
+
"99": 1,
|
|
1807
|
+
"fastscript": 3,
|
|
1808
|
+
"observability": 2,
|
|
1809
|
+
"structured": 2,
|
|
1810
|
+
"request": 8,
|
|
1811
|
+
"logs": 2,
|
|
1812
|
+
"with": 3,
|
|
1813
|
+
"ids": 2,
|
|
1814
|
+
"built": 1,
|
|
1815
|
+
"in": 1,
|
|
1816
|
+
"signals": 1,
|
|
1817
|
+
"trace": 1,
|
|
1818
|
+
"events": 1,
|
|
1819
|
+
"per": 1,
|
|
1820
|
+
"span": 1,
|
|
1821
|
+
"file": 1,
|
|
1822
|
+
"backed": 1,
|
|
1823
|
+
"metrics": 5,
|
|
1824
|
+
"store": 1,
|
|
1825
|
+
"json": 1,
|
|
1826
|
+
"counters": 3,
|
|
1827
|
+
"requests": 1,
|
|
1828
|
+
"total": 1,
|
|
1829
|
+
"status": 1,
|
|
1830
|
+
"error": 1,
|
|
1831
|
+
"timing": 1,
|
|
1832
|
+
"aggregates": 1,
|
|
1833
|
+
"duration": 2,
|
|
1834
|
+
"ms": 1,
|
|
1835
|
+
"endpoint": 1,
|
|
1836
|
+
"enable": 1,
|
|
1837
|
+
"public": 1,
|
|
1838
|
+
"read": 1,
|
|
1839
|
+
"snapshot": 1,
|
|
1840
|
+
"at": 1,
|
|
1841
|
+
"slo": 1,
|
|
1842
|
+
"baseline": 2,
|
|
1843
|
+
"v1": 1,
|
|
1844
|
+
"availability": 1,
|
|
1845
|
+
"p95": 2,
|
|
1846
|
+
"500ms": 1,
|
|
1847
|
+
"5xx": 2,
|
|
1848
|
+
"rate": 2,
|
|
1849
|
+
"alert": 1,
|
|
1850
|
+
"over": 2,
|
|
1851
|
+
"threshold": 2,
|
|
1852
|
+
"for": 2,
|
|
1853
|
+
"minutes": 2,
|
|
1854
|
+
"latency": 1,
|
|
1855
|
+
"job": 1,
|
|
1856
|
+
"dead": 1,
|
|
1857
|
+
"letter": 1,
|
|
1858
|
+
"growth": 1,
|
|
1859
|
+
"unexpected": 1,
|
|
1860
|
+
"spike": 1
|
|
1861
|
+
}
|
|
1862
|
+
},
|
|
1863
|
+
{
|
|
1864
|
+
"id": "plugin_api_contract",
|
|
1865
|
+
"title": "FastScript Plugin API Contract",
|
|
1866
|
+
"path": "/docs/plugin_api_contract",
|
|
1867
|
+
"summary": "- API version: `1`",
|
|
1868
|
+
"terms": {
|
|
1869
|
+
"1": 4,
|
|
1870
|
+
"2500": 1,
|
|
1871
|
+
"fastscript": 6,
|
|
1872
|
+
"plugin": 7,
|
|
1873
|
+
"api": 10,
|
|
1874
|
+
"contract": 3,
|
|
1875
|
+
"version": 4,
|
|
1876
|
+
"runtime": 2,
|
|
1877
|
+
"loads": 1,
|
|
1878
|
+
"configs": 1,
|
|
1879
|
+
"from": 1,
|
|
1880
|
+
"first": 1,
|
|
1881
|
+
"class": 1,
|
|
1882
|
+
"plugins": 8,
|
|
1883
|
+
"fs": 2,
|
|
1884
|
+
"js": 4,
|
|
1885
|
+
"mjs": 2,
|
|
1886
|
+
"cjs": 2,
|
|
1887
|
+
"app": 5,
|
|
1888
|
+
"hook": 4,
|
|
1889
|
+
"surface": 1,
|
|
1890
|
+
"middleware": 6,
|
|
1891
|
+
"ctx": 15,
|
|
1892
|
+
"next": 5,
|
|
1893
|
+
"onbuildstart": 3,
|
|
1894
|
+
"onbuildend": 3,
|
|
1895
|
+
"onrequeststart": 3,
|
|
1896
|
+
"onrequestend": 3,
|
|
1897
|
+
"shape": 1,
|
|
1898
|
+
"export": 2,
|
|
1899
|
+
"default": 3,
|
|
1900
|
+
"name": 2,
|
|
1901
|
+
"my": 1,
|
|
1902
|
+
"apiversion": 2,
|
|
1903
|
+
"setup": 1,
|
|
1904
|
+
"hooks": 6,
|
|
1905
|
+
"async": 10,
|
|
1906
|
+
"direct": 2,
|
|
1907
|
+
"shorthand": 1,
|
|
1908
|
+
"guarantees": 1,
|
|
1909
|
+
"failures": 1,
|
|
1910
|
+
"are": 1,
|
|
1911
|
+
"isolated": 1,
|
|
1912
|
+
"and": 2,
|
|
1913
|
+
"logged": 1,
|
|
1914
|
+
"execution": 1,
|
|
1915
|
+
"uses": 1,
|
|
1916
|
+
"timeout": 2,
|
|
1917
|
+
"protection": 1,
|
|
1918
|
+
"ms": 1,
|
|
1919
|
+
"mismatch": 1,
|
|
1920
|
+
"is": 2,
|
|
1921
|
+
"rejected": 1,
|
|
1922
|
+
"with": 1,
|
|
1923
|
+
"warning": 1,
|
|
1924
|
+
"inserted": 1,
|
|
1925
|
+
"after": 1,
|
|
1926
|
+
"core": 1,
|
|
1927
|
+
"security": 1,
|
|
1928
|
+
"before": 1,
|
|
1929
|
+
"stability": 1,
|
|
1930
|
+
"breaking": 1,
|
|
1931
|
+
"changes": 1,
|
|
1932
|
+
"require": 1,
|
|
1933
|
+
"major": 1,
|
|
1934
|
+
"bump": 1
|
|
1935
|
+
}
|
|
1936
|
+
},
|
|
1937
|
+
{
|
|
1938
|
+
"id": "proof_pack",
|
|
1939
|
+
"title": "FastScript Proof Pack",
|
|
1940
|
+
"path": "/docs/proof_pack",
|
|
1941
|
+
"summary": "- Generated: 2026-04-14T07:00:10.162Z",
|
|
1942
|
+
"terms": {
|
|
1943
|
+
"0": 3,
|
|
1944
|
+
"2": 1,
|
|
1945
|
+
"5": 1,
|
|
1946
|
+
"10": 2,
|
|
1947
|
+
"13": 4,
|
|
1948
|
+
"16": 2,
|
|
1949
|
+
"163": 1,
|
|
1950
|
+
"174": 1,
|
|
1951
|
+
"209": 1,
|
|
1952
|
+
"226": 1,
|
|
1953
|
+
"340": 1,
|
|
1954
|
+
"365": 1,
|
|
1955
|
+
"386": 1,
|
|
1956
|
+
"528": 1,
|
|
1957
|
+
"618": 1,
|
|
1958
|
+
"702": 1,
|
|
1959
|
+
"1809": 1,
|
|
1960
|
+
"2026": 3,
|
|
1961
|
+
"2382": 1,
|
|
1962
|
+
"6135": 1,
|
|
1963
|
+
"9438": 1,
|
|
1964
|
+
"31834": 1,
|
|
1965
|
+
"200464": 1,
|
|
1966
|
+
"fastscript": 19,
|
|
1967
|
+
"proof": 2,
|
|
1968
|
+
"pack": 2,
|
|
1969
|
+
"generated": 3,
|
|
1970
|
+
"04": 3,
|
|
1971
|
+
"14t07": 3,
|
|
1972
|
+
"00": 3,
|
|
1973
|
+
"162z": 2,
|
|
1974
|
+
"summary": 1,
|
|
1975
|
+
"routes": 3,
|
|
1976
|
+
"js": 10,
|
|
1977
|
+
"gzip": 4,
|
|
1978
|
+
"bytes": 3,
|
|
1979
|
+
"css": 4,
|
|
1980
|
+
"budget": 4,
|
|
1981
|
+
"30kb": 2,
|
|
1982
|
+
"pass": 19,
|
|
1983
|
+
"10kb": 2,
|
|
1984
|
+
"interop": 9,
|
|
1985
|
+
"cases": 2,
|
|
1986
|
+
"fail": 2,
|
|
1987
|
+
"benchmark": 2,
|
|
1988
|
+
"report": 3,
|
|
1989
|
+
"build": 1,
|
|
1990
|
+
"time": 1,
|
|
1991
|
+
"98ms": 1,
|
|
1992
|
+
"api": 4,
|
|
1993
|
+
"first": 2,
|
|
1994
|
+
"load": 2,
|
|
1995
|
+
"71kb": 1,
|
|
1996
|
+
"00kb": 1,
|
|
1997
|
+
"budgets": 1,
|
|
1998
|
+
"matrix": 5,
|
|
1999
|
+
"see": 1,
|
|
2000
|
+
"full": 1,
|
|
2001
|
+
"docs": 1,
|
|
2002
|
+
"md": 1,
|
|
2003
|
+
"failed": 1,
|
|
2004
|
+
"none": 2,
|
|
2005
|
+
"09": 1,
|
|
2006
|
+
"349z": 1,
|
|
2007
|
+
"profile": 1,
|
|
2008
|
+
"total": 1,
|
|
2009
|
+
"includes": 1,
|
|
2010
|
+
"framework": 7,
|
|
2011
|
+
"compatibility": 1,
|
|
2012
|
+
"shims": 1,
|
|
2013
|
+
"for": 1,
|
|
2014
|
+
"react": 5,
|
|
2015
|
+
"next": 4,
|
|
2016
|
+
"link": 3,
|
|
2017
|
+
"vue": 4,
|
|
2018
|
+
"svelte": 4,
|
|
2019
|
+
"store": 3,
|
|
2020
|
+
"preact": 4,
|
|
2021
|
+
"and": 3,
|
|
2022
|
+
"solid": 4,
|
|
2023
|
+
"scoped": 3,
|
|
2024
|
+
"subpath": 3,
|
|
2025
|
+
"dual": 5,
|
|
2026
|
+
"mode": 5,
|
|
2027
|
+
"package": 8,
|
|
2028
|
+
"checks": 3,
|
|
2029
|
+
"runtime": 2,
|
|
2030
|
+
"edge": 2,
|
|
2031
|
+
"lib": 2,
|
|
2032
|
+
"real": 7,
|
|
2033
|
+
"npm": 12,
|
|
2034
|
+
"using": 1,
|
|
2035
|
+
"installed": 1,
|
|
2036
|
+
"dependencies": 4,
|
|
2037
|
+
"acorn": 6,
|
|
2038
|
+
"walk": 3,
|
|
2039
|
+
"astring": 3,
|
|
2040
|
+
"node": 14,
|
|
2041
|
+
"built": 2,
|
|
2042
|
+
"in": 1,
|
|
2043
|
+
"commonjs": 2,
|
|
2044
|
+
"case": 1,
|
|
2045
|
+
"target": 1,
|
|
2046
|
+
"kind": 1,
|
|
2047
|
+
"platform": 1,
|
|
2048
|
+
"status": 1,
|
|
2049
|
+
"bundle": 1,
|
|
2050
|
+
"notes": 1,
|
|
2051
|
+
"core": 4,
|
|
2052
|
+
"fs": 10,
|
|
2053
|
+
"browser": 6,
|
|
2054
|
+
"module": 10,
|
|
2055
|
+
"imports": 10,
|
|
2056
|
+
"dom": 1,
|
|
2057
|
+
"client": 1,
|
|
2058
|
+
"shape": 1,
|
|
2059
|
+
"createapp": 1,
|
|
2060
|
+
"h": 2,
|
|
2061
|
+
"writable": 1,
|
|
2062
|
+
"render": 1,
|
|
2063
|
+
"signals": 1,
|
|
2064
|
+
"export": 2,
|
|
2065
|
+
"through": 1,
|
|
2066
|
+
"esm": 1,
|
|
2067
|
+
"condition": 1,
|
|
2068
|
+
"cjs": 1,
|
|
2069
|
+
"left": 1,
|
|
2070
|
+
"pad": 1,
|
|
2071
|
+
"builtins": 1,
|
|
2072
|
+
"crypto": 1,
|
|
2073
|
+
"path": 1,
|
|
2074
|
+
"ins": 1,
|
|
2075
|
+
"from": 3,
|
|
2076
|
+
"failures": 1
|
|
2077
|
+
}
|
|
2078
|
+
},
|
|
2079
|
+
{
|
|
2080
|
+
"id": "reference_apps",
|
|
2081
|
+
"title": "REFERENCE_APPS",
|
|
2082
|
+
"path": "/docs/reference_apps",
|
|
2083
|
+
"summary": "These are first-party production-reference applications used to validate 1.0 behavior.",
|
|
2084
|
+
"terms": {
|
|
2085
|
+
"0": 2,
|
|
2086
|
+
"1": 3,
|
|
2087
|
+
"2": 1,
|
|
2088
|
+
"3": 1,
|
|
2089
|
+
"reference": 4,
|
|
2090
|
+
"apps": 2,
|
|
2091
|
+
"these": 2,
|
|
2092
|
+
"are": 2,
|
|
2093
|
+
"first": 2,
|
|
2094
|
+
"party": 2,
|
|
2095
|
+
"production": 2,
|
|
2096
|
+
"applications": 2,
|
|
2097
|
+
"used": 2,
|
|
2098
|
+
"to": 2,
|
|
2099
|
+
"validate": 2,
|
|
2100
|
+
"behavior": 2,
|
|
2101
|
+
"fastscript": 1,
|
|
2102
|
+
"language": 1,
|
|
2103
|
+
"website": 1,
|
|
2104
|
+
"app": 2,
|
|
2105
|
+
"pages": 1,
|
|
2106
|
+
"exercises": 3,
|
|
2107
|
+
"routing": 1,
|
|
2108
|
+
"docs": 1,
|
|
2109
|
+
"search": 1,
|
|
2110
|
+
"api": 2,
|
|
2111
|
+
"blog": 1,
|
|
2112
|
+
"dynamic": 1,
|
|
2113
|
+
"route": 1,
|
|
2114
|
+
"ssr": 1,
|
|
2115
|
+
"hydration": 1,
|
|
2116
|
+
"deploy": 3,
|
|
2117
|
+
"adapters": 2,
|
|
2118
|
+
"fullstack": 2,
|
|
2119
|
+
"template": 2,
|
|
2120
|
+
"npm": 6,
|
|
2121
|
+
"run": 6,
|
|
2122
|
+
"create": 2,
|
|
2123
|
+
"auth": 1,
|
|
2124
|
+
"middleware": 1,
|
|
2125
|
+
"routes": 1,
|
|
2126
|
+
"db": 1,
|
|
2127
|
+
"storage": 1,
|
|
2128
|
+
"helpers": 1,
|
|
2129
|
+
"queue": 1,
|
|
2130
|
+
"webhook": 1,
|
|
2131
|
+
"primitives": 1,
|
|
2132
|
+
"startup": 2,
|
|
2133
|
+
"mvp": 2,
|
|
2134
|
+
"bootstrap": 1,
|
|
2135
|
+
"migration": 1,
|
|
2136
|
+
"path": 1,
|
|
2137
|
+
"workflow": 1,
|
|
2138
|
+
"and": 1,
|
|
2139
|
+
"quality": 1,
|
|
2140
|
+
"gate": 1,
|
|
2141
|
+
"pipeline": 1,
|
|
2142
|
+
"validation": 1,
|
|
2143
|
+
"evidence": 1,
|
|
2144
|
+
"smoke": 2,
|
|
2145
|
+
"dev": 1,
|
|
2146
|
+
"start": 1,
|
|
2147
|
+
"test": 2,
|
|
2148
|
+
"runtime": 1,
|
|
2149
|
+
"contract": 1
|
|
2150
|
+
}
|
|
2151
|
+
},
|
|
2152
|
+
{
|
|
2153
|
+
"id": "release_process",
|
|
2154
|
+
"title": "RELEASE_PROCESS",
|
|
2155
|
+
"path": "/docs/release_process",
|
|
2156
|
+
"summary": "1. `npm run hooks:install`",
|
|
2157
|
+
"terms": {
|
|
2158
|
+
"1": 4,
|
|
2159
|
+
"2": 2,
|
|
2160
|
+
"3": 2,
|
|
2161
|
+
"4": 1,
|
|
2162
|
+
"5": 1,
|
|
2163
|
+
"release": 6,
|
|
2164
|
+
"process": 2,
|
|
2165
|
+
"npm": 21,
|
|
2166
|
+
"run": 22,
|
|
2167
|
+
"hooks": 2,
|
|
2168
|
+
"install": 2,
|
|
2169
|
+
"fastscript": 1,
|
|
2170
|
+
"fast": 1,
|
|
2171
|
+
"path": 2,
|
|
2172
|
+
"every": 1,
|
|
2173
|
+
"pr": 1,
|
|
2174
|
+
"push": 3,
|
|
2175
|
+
"qa": 5,
|
|
2176
|
+
"gate": 5,
|
|
2177
|
+
"merge": 2,
|
|
2178
|
+
"pre": 1,
|
|
2179
|
+
"hook": 2,
|
|
2180
|
+
"policy": 6,
|
|
2181
|
+
"runs": 1,
|
|
2182
|
+
"temporary": 1,
|
|
2183
|
+
"bypass": 1,
|
|
2184
|
+
"only": 1,
|
|
2185
|
+
"for": 1,
|
|
2186
|
+
"emergency": 1,
|
|
2187
|
+
"hotfix": 1,
|
|
2188
|
+
"skip": 1,
|
|
2189
|
+
"git": 1,
|
|
2190
|
+
"full": 1,
|
|
2191
|
+
"rc": 1,
|
|
2192
|
+
"stable": 3,
|
|
2193
|
+
"all": 3,
|
|
2194
|
+
"sbom": 1,
|
|
2195
|
+
"generate": 1,
|
|
2196
|
+
"pack": 1,
|
|
2197
|
+
"check": 1,
|
|
2198
|
+
"patch": 1,
|
|
2199
|
+
"minor": 1,
|
|
2200
|
+
"major": 1,
|
|
2201
|
+
"re": 1,
|
|
2202
|
+
"required": 1,
|
|
2203
|
+
"language": 1,
|
|
2204
|
+
"v1": 2,
|
|
2205
|
+
"gates": 1,
|
|
2206
|
+
"test": 8,
|
|
2207
|
+
"fs": 1,
|
|
2208
|
+
"diag": 1,
|
|
2209
|
+
"sourcemap": 1,
|
|
2210
|
+
"fidelity": 1,
|
|
2211
|
+
"typecheck": 1,
|
|
2212
|
+
"conformance": 1,
|
|
2213
|
+
"determinism": 1,
|
|
2214
|
+
"parser": 1,
|
|
2215
|
+
"fuzz": 1,
|
|
2216
|
+
"runtime": 1,
|
|
2217
|
+
"contract": 1,
|
|
2218
|
+
"security": 3,
|
|
2219
|
+
"baseline": 1,
|
|
2220
|
+
"definition": 1,
|
|
2221
|
+
"items": 1,
|
|
2222
|
+
"in": 2,
|
|
2223
|
+
"spec": 1,
|
|
2224
|
+
"checklist": 1,
|
|
2225
|
+
"md": 6,
|
|
2226
|
+
"are": 1,
|
|
2227
|
+
"checked": 1,
|
|
2228
|
+
"docs": 4,
|
|
2229
|
+
"forever": 1,
|
|
2230
|
+
"readiness": 1,
|
|
2231
|
+
"is": 1,
|
|
2232
|
+
"current": 1,
|
|
2233
|
+
"no": 1,
|
|
2234
|
+
"open": 1,
|
|
2235
|
+
"blocker": 1,
|
|
2236
|
+
"defects": 1,
|
|
2237
|
+
"smoke": 1,
|
|
2238
|
+
"start": 1,
|
|
2239
|
+
"passes": 1,
|
|
2240
|
+
"production": 1,
|
|
2241
|
+
"like": 1,
|
|
2242
|
+
"mode": 1,
|
|
2243
|
+
"governance": 2,
|
|
2244
|
+
"semver": 1,
|
|
2245
|
+
"deprecation": 1,
|
|
2246
|
+
"rfc": 1,
|
|
2247
|
+
"versioning": 1,
|
|
2248
|
+
"lts": 2,
|
|
2249
|
+
"support": 1,
|
|
2250
|
+
"threat": 2,
|
|
2251
|
+
"model": 1,
|
|
2252
|
+
"execution": 1,
|
|
2253
|
+
"helpers": 1,
|
|
2254
|
+
"rollback": 1,
|
|
2255
|
+
"drill": 1,
|
|
2256
|
+
"soak": 1,
|
|
2257
|
+
"window": 1,
|
|
2258
|
+
"deploy": 1,
|
|
2259
|
+
"zero": 1,
|
|
2260
|
+
"downtime": 1
|
|
2261
|
+
}
|
|
2262
|
+
},
|
|
2263
|
+
{
|
|
2264
|
+
"id": "release_scope_v1",
|
|
2265
|
+
"title": "FastScript v1 Scope Freeze",
|
|
2266
|
+
"path": "/docs/release_scope_v1",
|
|
2267
|
+
"summary": "- Formal FastScript Language v1 specification and compatibility contract",
|
|
2268
|
+
"terms": {
|
|
2269
|
+
"1": 1,
|
|
2270
|
+
"2": 1,
|
|
2271
|
+
"9": 1,
|
|
2272
|
+
"14": 1,
|
|
2273
|
+
"2026": 1,
|
|
2274
|
+
"fastscript": 4,
|
|
2275
|
+
"v1": 10,
|
|
2276
|
+
"scope": 4,
|
|
2277
|
+
"freeze": 3,
|
|
2278
|
+
"formal": 2,
|
|
2279
|
+
"language": 3,
|
|
2280
|
+
"specification": 2,
|
|
2281
|
+
"and": 6,
|
|
2282
|
+
"compatibility": 2,
|
|
2283
|
+
"contract": 3,
|
|
2284
|
+
"included": 2,
|
|
2285
|
+
"in": 2,
|
|
2286
|
+
"full": 1,
|
|
2287
|
+
"parser": 1,
|
|
2288
|
+
"cst": 2,
|
|
2289
|
+
"diagnostics": 2,
|
|
2290
|
+
"pipeline": 1,
|
|
2291
|
+
"with": 3,
|
|
2292
|
+
"source": 1,
|
|
2293
|
+
"map": 1,
|
|
2294
|
+
"coverage": 1,
|
|
2295
|
+
"semantic": 1,
|
|
2296
|
+
"type": 2,
|
|
2297
|
+
"checker": 1,
|
|
2298
|
+
"symbol": 1,
|
|
2299
|
+
"inference": 1,
|
|
2300
|
+
"baseline": 1,
|
|
2301
|
+
"ast": 1,
|
|
2302
|
+
"safe": 1,
|
|
2303
|
+
"formatter": 1,
|
|
2304
|
+
"linter": 1,
|
|
2305
|
+
"idempotence": 1,
|
|
2306
|
+
"autofix": 1,
|
|
2307
|
+
"guarantees": 1,
|
|
2308
|
+
"conformance": 1,
|
|
2309
|
+
"fixtures": 1,
|
|
2310
|
+
"snapshot": 1,
|
|
2311
|
+
"regression": 1,
|
|
2312
|
+
"harness": 1,
|
|
2313
|
+
"node": 1,
|
|
2314
|
+
"runtime": 1,
|
|
2315
|
+
"dev": 1,
|
|
2316
|
+
"build": 1,
|
|
2317
|
+
"start": 1,
|
|
2318
|
+
"fs": 1,
|
|
2319
|
+
"js": 1,
|
|
2320
|
+
"app": 1,
|
|
2321
|
+
"routing": 1,
|
|
2322
|
+
"api": 1,
|
|
2323
|
+
"handling": 1,
|
|
2324
|
+
"auth": 1,
|
|
2325
|
+
"session": 1,
|
|
2326
|
+
"file": 1,
|
|
2327
|
+
"db": 1,
|
|
2328
|
+
"jobs": 1,
|
|
2329
|
+
"storage": 1,
|
|
2330
|
+
"core": 2,
|
|
2331
|
+
"plugin": 1,
|
|
2332
|
+
"hooks": 2,
|
|
2333
|
+
"local": 1,
|
|
2334
|
+
"no": 1,
|
|
2335
|
+
"billing": 1,
|
|
2336
|
+
"quality": 1,
|
|
2337
|
+
"gate": 1,
|
|
2338
|
+
"qa": 1,
|
|
2339
|
+
"all": 2,
|
|
2340
|
+
"design": 1,
|
|
2341
|
+
"token": 1,
|
|
2342
|
+
"constraints": 1,
|
|
2343
|
+
"style": 1,
|
|
2344
|
+
"validation": 1,
|
|
2345
|
+
"website": 1,
|
|
2346
|
+
"routes": 1,
|
|
2347
|
+
"docs": 1,
|
|
2348
|
+
"learn": 1,
|
|
2349
|
+
"examples": 1,
|
|
2350
|
+
"benchmarks": 1,
|
|
2351
|
+
"showcase": 1,
|
|
2352
|
+
"changelog": 1,
|
|
2353
|
+
"deferred": 1,
|
|
2354
|
+
"beyond": 2,
|
|
2355
|
+
"production": 1,
|
|
2356
|
+
"grade": 1,
|
|
2357
|
+
"managed": 1,
|
|
2358
|
+
"adapters": 1,
|
|
2359
|
+
"for": 2,
|
|
2360
|
+
"edge": 1,
|
|
2361
|
+
"serverless": 1,
|
|
2362
|
+
"providers": 1,
|
|
2363
|
+
"advanced": 1,
|
|
2364
|
+
"lsp": 1,
|
|
2365
|
+
"intelligence": 1,
|
|
2366
|
+
"starter": 1,
|
|
2367
|
+
"enterprise": 1,
|
|
2368
|
+
"only": 2,
|
|
2369
|
+
"requirements": 1,
|
|
2370
|
+
"from": 1,
|
|
2371
|
+
"long": 1,
|
|
2372
|
+
"range": 1,
|
|
2373
|
+
"roadmap": 2,
|
|
2374
|
+
"status": 1,
|
|
2375
|
+
"locked": 1,
|
|
2376
|
+
"on": 1,
|
|
2377
|
+
"04": 1,
|
|
2378
|
+
"during": 1,
|
|
2379
|
+
"stable": 2,
|
|
2380
|
+
"release": 1,
|
|
2381
|
+
"v0": 1,
|
|
2382
|
+
"the": 1,
|
|
2383
|
+
"items": 1,
|
|
2384
|
+
"are": 1,
|
|
2385
|
+
"eligible": 1,
|
|
2386
|
+
"patch": 1,
|
|
2387
|
+
"changes": 1,
|
|
2388
|
+
"non": 1,
|
|
2389
|
+
"work": 1,
|
|
2390
|
+
"is": 2,
|
|
2391
|
+
"frozen": 1,
|
|
2392
|
+
"until": 1,
|
|
2393
|
+
"planning": 1,
|
|
2394
|
+
"master": 1,
|
|
2395
|
+
"todo": 1,
|
|
2396
|
+
"item": 1,
|
|
2397
|
+
"completed": 1
|
|
2398
|
+
}
|
|
2399
|
+
},
|
|
2400
|
+
{
|
|
2401
|
+
"id": "release_signoff_template",
|
|
2402
|
+
"title": "FastScript Release Sign-off Template",
|
|
2403
|
+
"path": "/docs/release_signoff_template",
|
|
2404
|
+
"summary": "- Version:",
|
|
2405
|
+
"terms": {
|
|
2406
|
+
"fastscript": 2,
|
|
2407
|
+
"release": 3,
|
|
2408
|
+
"sign": 3,
|
|
2409
|
+
"off": 3,
|
|
2410
|
+
"template": 2,
|
|
2411
|
+
"version": 2,
|
|
2412
|
+
"date": 1,
|
|
2413
|
+
"scope": 2,
|
|
2414
|
+
"docs": 4,
|
|
2415
|
+
"v1": 1,
|
|
2416
|
+
"md": 1,
|
|
2417
|
+
"engineering": 2,
|
|
2418
|
+
"qa": 1,
|
|
2419
|
+
"all": 1,
|
|
2420
|
+
"passed": 3,
|
|
2421
|
+
"pack": 1,
|
|
2422
|
+
"check": 1,
|
|
2423
|
+
"no": 1,
|
|
2424
|
+
"open": 1,
|
|
2425
|
+
"blocker": 1,
|
|
2426
|
+
"defects": 1,
|
|
2427
|
+
"security": 3,
|
|
2428
|
+
"session": 1,
|
|
2429
|
+
"config": 1,
|
|
2430
|
+
"checks": 2,
|
|
2431
|
+
"verified": 1,
|
|
2432
|
+
"smoke": 1,
|
|
2433
|
+
"public": 1,
|
|
2434
|
+
"updated": 2,
|
|
2435
|
+
"known": 1,
|
|
2436
|
+
"limitations": 1,
|
|
2437
|
+
"operations": 2,
|
|
2438
|
+
"rollback": 1,
|
|
2439
|
+
"steps": 1,
|
|
2440
|
+
"validated": 1,
|
|
2441
|
+
"incident": 1,
|
|
2442
|
+
"playbook": 1,
|
|
2443
|
+
"reviewed": 1
|
|
2444
|
+
}
|
|
2445
|
+
},
|
|
2446
|
+
{
|
|
2447
|
+
"id": "rollout_guide",
|
|
2448
|
+
"title": "FastScript Rollout Guide",
|
|
2449
|
+
"path": "/docs/rollout_guide",
|
|
2450
|
+
"summary": "1. Run local gate:",
|
|
2451
|
+
"terms": {
|
|
2452
|
+
"1": 2,
|
|
2453
|
+
"2": 1,
|
|
2454
|
+
"3": 1,
|
|
2455
|
+
"4": 1,
|
|
2456
|
+
"5": 1,
|
|
2457
|
+
"fastscript": 2,
|
|
2458
|
+
"rollout": 3,
|
|
2459
|
+
"guide": 2,
|
|
2460
|
+
"run": 8,
|
|
2461
|
+
"local": 2,
|
|
2462
|
+
"gate": 2,
|
|
2463
|
+
"staged": 1,
|
|
2464
|
+
"no": 1,
|
|
2465
|
+
"hosted": 1,
|
|
2466
|
+
"ci": 1,
|
|
2467
|
+
"mode": 1,
|
|
2468
|
+
"npm": 4,
|
|
2469
|
+
"qa": 1,
|
|
2470
|
+
"all": 1,
|
|
2471
|
+
"pack": 1,
|
|
2472
|
+
"check": 1,
|
|
2473
|
+
"build": 2,
|
|
2474
|
+
"production": 2,
|
|
2475
|
+
"artifact": 3,
|
|
2476
|
+
"deploy": 1,
|
|
2477
|
+
"to": 4,
|
|
2478
|
+
"staging": 2,
|
|
2479
|
+
"environment": 1,
|
|
2480
|
+
"smoke": 3,
|
|
2481
|
+
"on": 1,
|
|
2482
|
+
"start": 1,
|
|
2483
|
+
"promote": 1,
|
|
2484
|
+
"in": 1,
|
|
2485
|
+
"controlled": 1,
|
|
2486
|
+
"window": 1,
|
|
2487
|
+
"canary": 1,
|
|
2488
|
+
"strategy": 1,
|
|
2489
|
+
"route": 1,
|
|
2490
|
+
"a": 1,
|
|
2491
|
+
"small": 1,
|
|
2492
|
+
"percentage": 1,
|
|
2493
|
+
"of": 1,
|
|
2494
|
+
"traffic": 1,
|
|
2495
|
+
"new": 1,
|
|
2496
|
+
"release": 1,
|
|
2497
|
+
"monitor": 1,
|
|
2498
|
+
"5xx": 1,
|
|
2499
|
+
"rate": 1,
|
|
2500
|
+
"request": 1,
|
|
2501
|
+
"latency": 1,
|
|
2502
|
+
"dead": 1,
|
|
2503
|
+
"letter": 1,
|
|
2504
|
+
"queue": 1,
|
|
2505
|
+
"growth": 1,
|
|
2506
|
+
"rollback": 2,
|
|
2507
|
+
"trigger": 1,
|
|
2508
|
+
"thresholds": 1,
|
|
2509
|
+
"from": 1,
|
|
2510
|
+
"docs": 1,
|
|
2511
|
+
"observability": 1,
|
|
2512
|
+
"md": 1,
|
|
2513
|
+
"keep": 1,
|
|
2514
|
+
"previous": 2,
|
|
2515
|
+
"re": 2,
|
|
2516
|
+
"point": 1,
|
|
2517
|
+
"process": 1,
|
|
2518
|
+
"manager": 1,
|
|
2519
|
+
"and": 1,
|
|
2520
|
+
"health": 1,
|
|
2521
|
+
"checks": 1
|
|
2522
|
+
}
|
|
2523
|
+
},
|
|
2524
|
+
{
|
|
2525
|
+
"id": "support_matrix",
|
|
2526
|
+
"title": "SUPPORT_MATRIX",
|
|
2527
|
+
"path": "/docs/support_matrix",
|
|
2528
|
+
"summary": "- Node HTTP runtime: supported",
|
|
2529
|
+
"terms": {
|
|
2530
|
+
"0": 1,
|
|
2531
|
+
"1": 1,
|
|
2532
|
+
"20": 2,
|
|
2533
|
+
"22": 1,
|
|
2534
|
+
"support": 5,
|
|
2535
|
+
"matrix": 4,
|
|
2536
|
+
"node": 5,
|
|
2537
|
+
"http": 2,
|
|
2538
|
+
"runtime": 3,
|
|
2539
|
+
"supported": 11,
|
|
2540
|
+
"fastscript": 1,
|
|
2541
|
+
"targets": 1,
|
|
2542
|
+
"pm2": 1,
|
|
2543
|
+
"process": 1,
|
|
2544
|
+
"manager": 1,
|
|
2545
|
+
"vercel": 1,
|
|
2546
|
+
"adapter": 2,
|
|
2547
|
+
"catch": 1,
|
|
2548
|
+
"all": 1,
|
|
2549
|
+
"ssr": 2,
|
|
2550
|
+
"api": 2,
|
|
2551
|
+
"cloudflare": 1,
|
|
2552
|
+
"worker": 1,
|
|
2553
|
+
"static": 1,
|
|
2554
|
+
"assets": 1,
|
|
2555
|
+
"language": 1,
|
|
2556
|
+
"surface": 1,
|
|
2557
|
+
"fs": 1,
|
|
2558
|
+
"files": 1,
|
|
2559
|
+
"with": 1,
|
|
2560
|
+
"state": 1,
|
|
2561
|
+
"fn": 1,
|
|
2562
|
+
"js": 1,
|
|
2563
|
+
"compatibility": 1,
|
|
2564
|
+
"mode": 1,
|
|
2565
|
+
"tsx": 1,
|
|
2566
|
+
"jsx": 1,
|
|
2567
|
+
"direct": 1,
|
|
2568
|
+
"compile": 1,
|
|
2569
|
+
"in": 2,
|
|
2570
|
+
"pipeline": 1,
|
|
2571
|
+
"not": 1,
|
|
2572
|
+
"use": 1,
|
|
2573
|
+
"migration": 1,
|
|
2574
|
+
"path": 1,
|
|
2575
|
+
"platform": 1,
|
|
2576
|
+
"windows": 1,
|
|
2577
|
+
"macos": 1,
|
|
2578
|
+
"linux": 1,
|
|
2579
|
+
"validation": 1,
|
|
2580
|
+
"source": 1,
|
|
2581
|
+
"ci": 2,
|
|
2582
|
+
"github": 1,
|
|
2583
|
+
"workflows": 1,
|
|
2584
|
+
"yml": 1,
|
|
2585
|
+
"minimum": 1,
|
|
2586
|
+
"tested": 2,
|
|
2587
|
+
"and": 1,
|
|
2588
|
+
"tooling": 1,
|
|
2589
|
+
"vs": 1,
|
|
2590
|
+
"code": 1,
|
|
2591
|
+
"syntax": 1,
|
|
2592
|
+
"lsp": 1,
|
|
2593
|
+
"smoke": 1,
|
|
2594
|
+
"cli": 1,
|
|
2595
|
+
"formatter": 1,
|
|
2596
|
+
"linter": 1,
|
|
2597
|
+
"typecheck": 1,
|
|
2598
|
+
"stable": 2,
|
|
2599
|
+
"under": 1,
|
|
2600
|
+
"qa": 1,
|
|
2601
|
+
"gate": 1,
|
|
2602
|
+
"release": 1,
|
|
2603
|
+
"current": 1,
|
|
2604
|
+
"line": 1,
|
|
2605
|
+
"x": 1,
|
|
2606
|
+
"lts": 2,
|
|
2607
|
+
"policy": 2,
|
|
2608
|
+
"reference": 1,
|
|
2609
|
+
"docs": 1,
|
|
2610
|
+
"md": 1
|
|
2611
|
+
}
|
|
2612
|
+
},
|
|
2613
|
+
{
|
|
2614
|
+
"id": "threat_model",
|
|
2615
|
+
"title": "THREAT_MODEL",
|
|
2616
|
+
"path": "/docs/threat_model",
|
|
2617
|
+
"summary": "- Source code (`.fs`, JS modules)",
|
|
2618
|
+
"terms": {
|
|
2619
|
+
"1": 2,
|
|
2620
|
+
"2": 2,
|
|
2621
|
+
"3": 2,
|
|
2622
|
+
"4": 2,
|
|
2623
|
+
"5": 1,
|
|
2624
|
+
"6": 1,
|
|
2625
|
+
"threat": 3,
|
|
2626
|
+
"model": 2,
|
|
2627
|
+
"source": 3,
|
|
2628
|
+
"code": 2,
|
|
2629
|
+
"fs": 2,
|
|
2630
|
+
"js": 2,
|
|
2631
|
+
"modules": 2,
|
|
2632
|
+
"fastscript": 2,
|
|
2633
|
+
"assets": 1,
|
|
2634
|
+
"build": 2,
|
|
2635
|
+
"output": 1,
|
|
2636
|
+
"dist": 1,
|
|
2637
|
+
"artifacts": 2,
|
|
2638
|
+
"manifests": 1,
|
|
2639
|
+
"maps": 1,
|
|
2640
|
+
"runtime": 4,
|
|
2641
|
+
"data": 1,
|
|
2642
|
+
"db": 1,
|
|
2643
|
+
"session": 3,
|
|
2644
|
+
"job": 1,
|
|
2645
|
+
"state": 1,
|
|
2646
|
+
"files": 1,
|
|
2647
|
+
"secrets": 3,
|
|
2648
|
+
"and": 11,
|
|
2649
|
+
"environment": 1,
|
|
2650
|
+
"values": 1,
|
|
2651
|
+
"user": 1,
|
|
2652
|
+
"identifiers": 1,
|
|
2653
|
+
"request": 2,
|
|
2654
|
+
"payloads": 2,
|
|
2655
|
+
"trust": 1,
|
|
2656
|
+
"boundaries": 1,
|
|
2657
|
+
"browser": 1,
|
|
2658
|
+
"http": 1,
|
|
2659
|
+
"boundary": 3,
|
|
2660
|
+
"database": 1,
|
|
2661
|
+
"storage": 1,
|
|
2662
|
+
"queue": 1,
|
|
2663
|
+
"webhook": 3,
|
|
2664
|
+
"providers": 1,
|
|
2665
|
+
"ci": 1,
|
|
2666
|
+
"cd": 1,
|
|
2667
|
+
"release": 3,
|
|
2668
|
+
"artifact": 2,
|
|
2669
|
+
"plugin": 2,
|
|
2670
|
+
"dependency": 2,
|
|
2671
|
+
"primary": 1,
|
|
2672
|
+
"categories": 1,
|
|
2673
|
+
"input": 1,
|
|
2674
|
+
"abuse": 3,
|
|
2675
|
+
"oversized": 1,
|
|
2676
|
+
"bodies": 1,
|
|
2677
|
+
"malformed": 1,
|
|
2678
|
+
"injection": 1,
|
|
2679
|
+
"attempts": 1,
|
|
2680
|
+
"auth": 1,
|
|
2681
|
+
"fixation": 1,
|
|
2682
|
+
"replay": 2,
|
|
2683
|
+
"weak": 1,
|
|
2684
|
+
"secret": 1,
|
|
2685
|
+
"rotation": 1,
|
|
2686
|
+
"unsigned": 1,
|
|
2687
|
+
"requests": 1,
|
|
2688
|
+
"replayed": 1,
|
|
2689
|
+
"events": 1,
|
|
2690
|
+
"supply": 1,
|
|
2691
|
+
"chain": 1,
|
|
2692
|
+
"risk": 1,
|
|
2693
|
+
"compromised": 1,
|
|
2694
|
+
"tampering": 1,
|
|
2695
|
+
"non": 1,
|
|
2696
|
+
"deterministic": 1,
|
|
2697
|
+
"replaced": 1,
|
|
2698
|
+
"outputs": 1,
|
|
2699
|
+
"config": 1,
|
|
2700
|
+
"leaks": 1,
|
|
2701
|
+
"server": 2,
|
|
2702
|
+
"exposed": 1,
|
|
2703
|
+
"to": 1,
|
|
2704
|
+
"client": 1,
|
|
2705
|
+
"mitigations": 1,
|
|
2706
|
+
"current": 1,
|
|
2707
|
+
"validation": 2,
|
|
2708
|
+
"layer": 1,
|
|
2709
|
+
"schema": 1,
|
|
2710
|
+
"checks": 1,
|
|
2711
|
+
"for": 1,
|
|
2712
|
+
"inputs": 1,
|
|
2713
|
+
"route": 1,
|
|
2714
|
+
"guards": 1,
|
|
2715
|
+
"middleware": 1,
|
|
2716
|
+
"controls": 2,
|
|
2717
|
+
"signature": 1,
|
|
2718
|
+
"defenses": 1,
|
|
2719
|
+
"structured": 1,
|
|
2720
|
+
"logging": 1,
|
|
2721
|
+
"ids": 1,
|
|
2722
|
+
"diagnostics": 1,
|
|
2723
|
+
"backup": 2,
|
|
2724
|
+
"restore": 1,
|
|
2725
|
+
"verification": 1,
|
|
2726
|
+
"rollback": 1,
|
|
2727
|
+
"drills": 1,
|
|
2728
|
+
"interop": 1,
|
|
2729
|
+
"conformance": 1,
|
|
2730
|
+
"test": 3,
|
|
2731
|
+
"gates": 1,
|
|
2732
|
+
"before": 3,
|
|
2733
|
+
"merge": 4,
|
|
2734
|
+
"gate": 3,
|
|
2735
|
+
"with": 1,
|
|
2736
|
+
"vulnerability": 2,
|
|
2737
|
+
"audit": 1,
|
|
2738
|
+
"residual": 1,
|
|
2739
|
+
"risks": 1,
|
|
2740
|
+
"misconfigured": 1,
|
|
2741
|
+
"production": 1,
|
|
2742
|
+
"environments": 1,
|
|
2743
|
+
"third": 1,
|
|
2744
|
+
"party": 1,
|
|
2745
|
+
"service": 1,
|
|
2746
|
+
"outages": 1,
|
|
2747
|
+
"api": 1,
|
|
2748
|
+
"behavior": 1,
|
|
2749
|
+
"drift": 1,
|
|
2750
|
+
"insider": 1,
|
|
2751
|
+
"token": 1,
|
|
2752
|
+
"compromise": 1,
|
|
2753
|
+
"scenarios": 1,
|
|
2754
|
+
"required": 1,
|
|
2755
|
+
"operational": 1,
|
|
2756
|
+
"enforce": 2,
|
|
2757
|
+
"qa": 2,
|
|
2758
|
+
"push": 1,
|
|
2759
|
+
"all": 1,
|
|
2760
|
+
"releases": 1,
|
|
2761
|
+
"rotate": 1,
|
|
2762
|
+
"on": 1,
|
|
2763
|
+
"incident": 1,
|
|
2764
|
+
"or": 1,
|
|
2765
|
+
"scheduled": 1,
|
|
2766
|
+
"cadence": 1,
|
|
2767
|
+
"keep": 1,
|
|
2768
|
+
"advisory": 1,
|
|
2769
|
+
"channel": 1,
|
|
2770
|
+
"active": 1,
|
|
2771
|
+
"scripts": 4,
|
|
2772
|
+
"security": 1,
|
|
2773
|
+
"baseline": 1,
|
|
2774
|
+
"mjs": 4,
|
|
2775
|
+
"deploy": 1,
|
|
2776
|
+
"adapters": 1,
|
|
2777
|
+
"verify": 1
|
|
2778
|
+
}
|
|
2779
|
+
},
|
|
2780
|
+
{
|
|
2781
|
+
"id": "troubleshooting",
|
|
2782
|
+
"title": "FastScript Troubleshooting",
|
|
2783
|
+
"path": "/docs/troubleshooting",
|
|
2784
|
+
"summary": "- Set `SESSION_SECRET` before `npm run start`.",
|
|
2785
|
+
"terms": {
|
|
2786
|
+
"1": 1,
|
|
2787
|
+
"fastscript": 4,
|
|
2788
|
+
"troubleshooting": 2,
|
|
2789
|
+
"set": 2,
|
|
2790
|
+
"session": 3,
|
|
2791
|
+
"secret": 4,
|
|
2792
|
+
"before": 2,
|
|
2793
|
+
"npm": 2,
|
|
2794
|
+
"run": 2,
|
|
2795
|
+
"start": 3,
|
|
2796
|
+
"missing": 1,
|
|
2797
|
+
"in": 3,
|
|
2798
|
+
"production": 1,
|
|
2799
|
+
"smoke": 1,
|
|
2800
|
+
"injects": 1,
|
|
2801
|
+
"a": 1,
|
|
2802
|
+
"local": 1,
|
|
2803
|
+
"test": 1,
|
|
2804
|
+
"automatically": 1,
|
|
2805
|
+
"style": 1,
|
|
2806
|
+
"validation": 1,
|
|
2807
|
+
"failed": 1,
|
|
2808
|
+
"add": 1,
|
|
2809
|
+
"class": 2,
|
|
2810
|
+
"names": 1,
|
|
2811
|
+
"to": 1,
|
|
2812
|
+
"app": 3,
|
|
2813
|
+
"design": 1,
|
|
2814
|
+
"allowlist": 1,
|
|
2815
|
+
"json": 2,
|
|
2816
|
+
"or": 1,
|
|
2817
|
+
"use": 1,
|
|
2818
|
+
"u": 1,
|
|
2819
|
+
"utility": 1,
|
|
2820
|
+
"classes": 1,
|
|
2821
|
+
"replace": 1,
|
|
2822
|
+
"raw": 1,
|
|
2823
|
+
"hex": 1,
|
|
2824
|
+
"values": 1,
|
|
2825
|
+
"styles": 1,
|
|
2826
|
+
"css": 1,
|
|
2827
|
+
"with": 1,
|
|
2828
|
+
"token": 1,
|
|
2829
|
+
"variables": 1,
|
|
2830
|
+
"var": 1,
|
|
2831
|
+
"fs": 3,
|
|
2832
|
+
"color": 1,
|
|
2833
|
+
"db": 1,
|
|
2834
|
+
"migrate": 1,
|
|
2835
|
+
"keeps": 1,
|
|
2836
|
+
"running": 2,
|
|
2837
|
+
"old": 1,
|
|
2838
|
+
"migrations": 3,
|
|
2839
|
+
"applied": 1,
|
|
2840
|
+
"migration": 1,
|
|
2841
|
+
"ledger": 2,
|
|
2842
|
+
"is": 2,
|
|
2843
|
+
"remove": 1,
|
|
2844
|
+
"entries": 1,
|
|
2845
|
+
"only": 1,
|
|
2846
|
+
"when": 1,
|
|
2847
|
+
"intentionally": 1,
|
|
2848
|
+
"re": 1,
|
|
2849
|
+
"plugin": 2,
|
|
2850
|
+
"not": 1,
|
|
2851
|
+
"loading": 1,
|
|
2852
|
+
"ensure": 2,
|
|
2853
|
+
"file": 1,
|
|
2854
|
+
"one": 1,
|
|
2855
|
+
"of": 1,
|
|
2856
|
+
"plugins": 2,
|
|
2857
|
+
"js": 2,
|
|
2858
|
+
"mjs": 2,
|
|
2859
|
+
"cjs": 2,
|
|
2860
|
+
"apiversion": 1
|
|
2861
|
+
}
|
|
2862
|
+
},
|
|
2863
|
+
{
|
|
2864
|
+
"id": "v1_forever_readiness",
|
|
2865
|
+
"title": "V1_FOREVER_READINESS",
|
|
2866
|
+
"path": "/docs/v1_forever_readiness",
|
|
2867
|
+
"summary": "Status key:",
|
|
2868
|
+
"terms": {
|
|
2869
|
+
"0": 3,
|
|
2870
|
+
"1": 5,
|
|
2871
|
+
"2": 2,
|
|
2872
|
+
"3": 2,
|
|
2873
|
+
"4": 2,
|
|
2874
|
+
"5": 1,
|
|
2875
|
+
"6": 1,
|
|
2876
|
+
"7": 1,
|
|
2877
|
+
"8": 1,
|
|
2878
|
+
"9": 1,
|
|
2879
|
+
"10": 1,
|
|
2880
|
+
"11": 1,
|
|
2881
|
+
"12": 1,
|
|
2882
|
+
"13": 1,
|
|
2883
|
+
"14": 1,
|
|
2884
|
+
"15": 1,
|
|
2885
|
+
"16": 1,
|
|
2886
|
+
"17": 1,
|
|
2887
|
+
"18": 1,
|
|
2888
|
+
"19": 1,
|
|
2889
|
+
"20": 1,
|
|
2890
|
+
"21": 1,
|
|
2891
|
+
"22": 1,
|
|
2892
|
+
"23": 1,
|
|
2893
|
+
"24": 1,
|
|
2894
|
+
"25": 1,
|
|
2895
|
+
"26": 1,
|
|
2896
|
+
"27": 1,
|
|
2897
|
+
"28": 1,
|
|
2898
|
+
"29": 1,
|
|
2899
|
+
"30": 1,
|
|
2900
|
+
"31": 1,
|
|
2901
|
+
"32": 1,
|
|
2902
|
+
"33": 1,
|
|
2903
|
+
"34": 1,
|
|
2904
|
+
"35": 1,
|
|
2905
|
+
"36": 1,
|
|
2906
|
+
"37": 1,
|
|
2907
|
+
"38": 1,
|
|
2908
|
+
"39": 1,
|
|
2909
|
+
"40": 1,
|
|
2910
|
+
"41": 1,
|
|
2911
|
+
"42": 1,
|
|
2912
|
+
"43": 1,
|
|
2913
|
+
"44": 1,
|
|
2914
|
+
"v1": 3,
|
|
2915
|
+
"forever": 2,
|
|
2916
|
+
"readiness": 2,
|
|
2917
|
+
"status": 2,
|
|
2918
|
+
"key": 2,
|
|
2919
|
+
"fastscript": 2,
|
|
2920
|
+
"matrix": 5,
|
|
2921
|
+
"complete": 46,
|
|
2922
|
+
"implemented": 1,
|
|
2923
|
+
"and": 18,
|
|
2924
|
+
"gated": 1,
|
|
2925
|
+
"in": 2,
|
|
2926
|
+
"repo": 1,
|
|
2927
|
+
"policy": 10,
|
|
2928
|
+
"documented": 1,
|
|
2929
|
+
"enforced": 1,
|
|
2930
|
+
"by": 2,
|
|
2931
|
+
"release": 11,
|
|
2932
|
+
"merge": 3,
|
|
2933
|
+
"process": 2,
|
|
2934
|
+
"language": 4,
|
|
2935
|
+
"spec": 8,
|
|
2936
|
+
"freeze": 5,
|
|
2937
|
+
"grammar": 1,
|
|
2938
|
+
"syntax": 1,
|
|
2939
|
+
"contract": 6,
|
|
2940
|
+
"evidence": 45,
|
|
2941
|
+
"md": 23,
|
|
2942
|
+
"module": 1,
|
|
2943
|
+
"resolution": 1,
|
|
2944
|
+
"rules": 4,
|
|
2945
|
+
"docs": 19,
|
|
2946
|
+
"interop": 4,
|
|
2947
|
+
"compatibility": 1,
|
|
2948
|
+
"migration": 2,
|
|
2949
|
+
"packs": 1,
|
|
2950
|
+
"type": 1,
|
|
2951
|
+
"system": 2,
|
|
2952
|
+
"semantics": 1,
|
|
2953
|
+
"inference": 1,
|
|
2954
|
+
"baseline": 8,
|
|
2955
|
+
"src": 9,
|
|
2956
|
+
"typecheck": 2,
|
|
2957
|
+
"mjs": 47,
|
|
2958
|
+
"routing": 1,
|
|
2959
|
+
"loader": 1,
|
|
2960
|
+
"middleware": 3,
|
|
2961
|
+
"runtime": 5,
|
|
2962
|
+
"order": 1,
|
|
2963
|
+
"routes": 3,
|
|
2964
|
+
"scripts": 38,
|
|
2965
|
+
"test": 24,
|
|
2966
|
+
"stable": 5,
|
|
2967
|
+
"compiler": 3,
|
|
2968
|
+
"error": 4,
|
|
2969
|
+
"code": 2,
|
|
2970
|
+
"catalog": 1,
|
|
2971
|
+
"codes": 2,
|
|
2972
|
+
"fs": 3,
|
|
2973
|
+
"semver": 1,
|
|
2974
|
+
"breaking": 1,
|
|
2975
|
+
"change": 1,
|
|
2976
|
+
"governance": 4,
|
|
2977
|
+
"versioning": 2,
|
|
2978
|
+
"hardening": 3,
|
|
2979
|
+
"deterministic": 1,
|
|
2980
|
+
"builds": 1,
|
|
2981
|
+
"check": 2,
|
|
2982
|
+
"determinism": 1,
|
|
2983
|
+
"parser": 2,
|
|
2984
|
+
"fuzz": 2,
|
|
2985
|
+
"crash": 1,
|
|
2986
|
+
"source": 1,
|
|
2987
|
+
"map": 1,
|
|
2988
|
+
"fidelity": 2,
|
|
2989
|
+
"validation": 4,
|
|
2990
|
+
"sourcemap": 1,
|
|
2991
|
+
"incremental": 1,
|
|
2992
|
+
"build": 2,
|
|
2993
|
+
"correctness": 1,
|
|
2994
|
+
"gates": 2,
|
|
2995
|
+
"roundtrip": 1,
|
|
2996
|
+
"cross": 1,
|
|
2997
|
+
"platform": 1,
|
|
2998
|
+
"parity": 2,
|
|
2999
|
+
"ci": 4,
|
|
3000
|
+
"github": 3,
|
|
3001
|
+
"workflows": 3,
|
|
3002
|
+
"yml": 3,
|
|
3003
|
+
"performance": 1,
|
|
3004
|
+
"reports": 1,
|
|
3005
|
+
"bench": 1,
|
|
3006
|
+
"report": 1,
|
|
3007
|
+
"benchmark": 3,
|
|
3008
|
+
"suite": 2,
|
|
3009
|
+
"ssr": 1,
|
|
3010
|
+
"client": 1,
|
|
3011
|
+
"smoke": 7,
|
|
3012
|
+
"dev": 1,
|
|
3013
|
+
"start": 1,
|
|
3014
|
+
"router": 1,
|
|
3015
|
+
"precedence": 1,
|
|
3016
|
+
"dynamic": 1,
|
|
3017
|
+
"static": 1,
|
|
3018
|
+
"route": 1,
|
|
3019
|
+
"tests": 5,
|
|
3020
|
+
"api": 1,
|
|
3021
|
+
"request": 1,
|
|
3022
|
+
"response": 1,
|
|
3023
|
+
"checks": 3,
|
|
3024
|
+
"auth": 3,
|
|
3025
|
+
"session": 1,
|
|
3026
|
+
"foundations": 1,
|
|
3027
|
+
"db": 4,
|
|
3028
|
+
"transactions": 1,
|
|
3029
|
+
"migrations": 1,
|
|
3030
|
+
"rollback": 4,
|
|
3031
|
+
"path": 1,
|
|
3032
|
+
"cli": 2,
|
|
3033
|
+
"npm": 11,
|
|
3034
|
+
"run": 11,
|
|
3035
|
+
"queue": 1,
|
|
3036
|
+
"jobs": 2,
|
|
3037
|
+
"retries": 1,
|
|
3038
|
+
"dead": 2,
|
|
3039
|
+
"letter": 2,
|
|
3040
|
+
"controls": 1,
|
|
3041
|
+
"worker": 1,
|
|
3042
|
+
"replay": 2,
|
|
3043
|
+
"storage": 4,
|
|
3044
|
+
"upload": 1,
|
|
3045
|
+
"primitives": 1,
|
|
3046
|
+
"webhook": 4,
|
|
3047
|
+
"signature": 1,
|
|
3048
|
+
"defenses": 1,
|
|
3049
|
+
"security": 4,
|
|
3050
|
+
"supply": 1,
|
|
3051
|
+
"chain": 1,
|
|
3052
|
+
"threat": 2,
|
|
3053
|
+
"model": 2,
|
|
3054
|
+
"published": 1,
|
|
3055
|
+
"dependency": 1,
|
|
3056
|
+
"audit": 2,
|
|
3057
|
+
"sbom": 3,
|
|
3058
|
+
"generation": 1,
|
|
3059
|
+
"gate": 5,
|
|
3060
|
+
"generate": 1,
|
|
3061
|
+
"json": 2,
|
|
3062
|
+
"secure": 1,
|
|
3063
|
+
"default": 1,
|
|
3064
|
+
"headers": 1,
|
|
3065
|
+
"cookies": 1,
|
|
3066
|
+
"csp": 2,
|
|
3067
|
+
"vercel": 1,
|
|
3068
|
+
"secrets": 1,
|
|
3069
|
+
"env": 3,
|
|
3070
|
+
"handling": 1,
|
|
3071
|
+
"schema": 2,
|
|
3072
|
+
"app": 1,
|
|
3073
|
+
"incident": 2,
|
|
3074
|
+
"disclosure": 1,
|
|
3075
|
+
"playbook": 1,
|
|
3076
|
+
"tooling": 1,
|
|
3077
|
+
"dx": 1,
|
|
3078
|
+
"lsp": 2,
|
|
3079
|
+
"diagnostics": 3,
|
|
3080
|
+
"resolve": 1,
|
|
3081
|
+
"refs": 1,
|
|
3082
|
+
"vscode": 2,
|
|
3083
|
+
"cjs": 1,
|
|
3084
|
+
"vs": 1,
|
|
3085
|
+
"extension": 2,
|
|
3086
|
+
"workflow": 1,
|
|
3087
|
+
"formatter": 1,
|
|
3088
|
+
"linter": 1,
|
|
3089
|
+
"behavior": 3,
|
|
3090
|
+
"format": 1,
|
|
3091
|
+
"lint": 2,
|
|
3092
|
+
"style": 3,
|
|
3093
|
+
"export": 3,
|
|
3094
|
+
"helpers": 1,
|
|
3095
|
+
"migrate": 1,
|
|
3096
|
+
"js": 1,
|
|
3097
|
+
"ts": 1,
|
|
3098
|
+
"quality": 1,
|
|
3099
|
+
"pr": 1,
|
|
3100
|
+
"coverage": 1,
|
|
3101
|
+
"on": 1,
|
|
3102
|
+
"integration": 1,
|
|
3103
|
+
"soak": 2,
|
|
3104
|
+
"window": 1,
|
|
3105
|
+
"drill": 1,
|
|
3106
|
+
"methodology": 1,
|
|
3107
|
+
"artifact": 2,
|
|
3108
|
+
"publication": 1,
|
|
3109
|
+
"proof": 1,
|
|
3110
|
+
"pack": 3,
|
|
3111
|
+
"candidate": 2,
|
|
3112
|
+
"checklist": 4,
|
|
3113
|
+
"signoff": 2,
|
|
3114
|
+
"flow": 1,
|
|
3115
|
+
"template": 1,
|
|
3116
|
+
"ops": 1,
|
|
3117
|
+
"verification": 2,
|
|
3118
|
+
"lts": 2,
|
|
3119
|
+
"branch": 1,
|
|
3120
|
+
"support": 1,
|
|
3121
|
+
"backup": 3,
|
|
3122
|
+
"restore": 2,
|
|
3123
|
+
"drills": 1,
|
|
3124
|
+
"verify": 1,
|
|
3125
|
+
"observability": 2,
|
|
3126
|
+
"defaults": 1,
|
|
3127
|
+
"metrics": 2,
|
|
3128
|
+
"ecosystem": 1,
|
|
3129
|
+
"starter": 1,
|
|
3130
|
+
"project": 1,
|
|
3131
|
+
"templates": 1,
|
|
3132
|
+
"reference": 2,
|
|
3133
|
+
"apps": 2,
|
|
3134
|
+
"available": 1,
|
|
3135
|
+
"create": 2,
|
|
3136
|
+
"startup": 1,
|
|
3137
|
+
"mvp": 1,
|
|
3138
|
+
"fullstack": 1,
|
|
3139
|
+
"first": 1,
|
|
3140
|
+
"party": 1,
|
|
3141
|
+
"ui": 1,
|
|
3142
|
+
"certification": 1,
|
|
3143
|
+
"production": 1,
|
|
3144
|
+
"runbooks": 1,
|
|
3145
|
+
"troubleshooting": 2,
|
|
3146
|
+
"deploy": 1,
|
|
3147
|
+
"guide": 2,
|
|
3148
|
+
"rollout": 1,
|
|
3149
|
+
"rfc": 1,
|
|
3150
|
+
"contribution": 1,
|
|
3151
|
+
"contributing": 1,
|
|
3152
|
+
"rfcs": 1,
|
|
3153
|
+
"readme": 1,
|
|
3154
|
+
"final": 1,
|
|
3155
|
+
"ship": 1,
|
|
3156
|
+
"operational": 1,
|
|
3157
|
+
"a": 1,
|
|
3158
|
+
"is": 3,
|
|
3159
|
+
"considered": 1,
|
|
3160
|
+
"grade": 1,
|
|
3161
|
+
"when": 1,
|
|
3162
|
+
"all": 2,
|
|
3163
|
+
"of": 1,
|
|
3164
|
+
"the": 1,
|
|
3165
|
+
"following": 1,
|
|
3166
|
+
"are": 1,
|
|
3167
|
+
"true": 1,
|
|
3168
|
+
"qa": 2,
|
|
3169
|
+
"green": 2,
|
|
3170
|
+
"for": 1,
|
|
3171
|
+
"cut": 1,
|
|
3172
|
+
"passes": 1,
|
|
3173
|
+
"including": 1,
|
|
3174
|
+
"vulnerability": 1,
|
|
3175
|
+
"no": 1,
|
|
3176
|
+
"open": 1,
|
|
3177
|
+
"blocker": 1,
|
|
3178
|
+
"items": 1
|
|
3179
|
+
}
|
|
3180
|
+
}
|
|
3181
|
+
];
|
|
3182
|
+
export default DOC_SEARCH_INDEX;
|