MCPcopy
hub / github.com/QwikDev/qwik / handle

Function handle

packages/qwik-city/src/middleware/aws-lambda/index.ts:43–50  ·  view source on GitHub ↗
(req: any, res: any)

Source from the content-addressed store, hash-verified

41 };
42
43 const handle = (req: any, res: any) => {
44 req.url = fixPath(req.url);
45 staticFile(req, res, () => {
46 router(req, res, () => {
47 notFound(req, res, () => {});
48 });
49 });
50 };
51
52 return { fixPath, router, staticFile, notFound, handle };
53 } catch (err: any) {

Callers

nothing calls this directly

Calls 4

fixPathFunction · 0.85
staticFileFunction · 0.50
routerFunction · 0.50
notFoundFunction · 0.50

Tested by

no test coverage detected

Used in the wild real call sites across dependent graphs

searching dependent graphs…