Avoid synchronous file reads in HTTP handlers
Request handlers should not call `readFileSync` or equivalent blocking file APIs.
#Metadata
#Why it matters
Blocking disk I/O inside request handlers stalls the Node.js event loop and hurts availability under load.
#Remediation
Use `fs.promises.readFile`, streams, or preload static assets outside the hot request path.
#Repository path
The generated metadata points to critiq-rules/libs/rules/catalog/rules/typescript/ts.security.no-fs-readfile-sync-in-handler.rule.yaml.