response-cookies-multi.ts — astro Source File
Architecture documentation for response-cookies-multi.ts, a typescript file in the astro codebase.
Entity Profile
Relationship Graph
Source Code
export async function GET({ request }: { request: Request }) {
const headers = new Headers();
headers.append('content-type', 'text/plain;charset=utf-8');
headers.append('Set-Cookie', 'hello1=world1');
headers.append('SET-COOKIE', 'hello2=world2');
return new Response('hello world', { headers });
}
Domain
Subdomains
Functions
Source
Frequently Asked Questions
What does response-cookies-multi.ts do?
response-cookies-multi.ts is a source file in the astro codebase, written in typescript. It belongs to the CoreAstro domain, RoutingSystem subdomain.
What functions are defined in response-cookies-multi.ts?
response-cookies-multi.ts defines 1 function(s): GET.
Where is response-cookies-multi.ts in the architecture?
response-cookies-multi.ts is located at packages/integrations/node/test/fixtures/headers/src/pages/endpoints/response-cookies-multi.ts (domain: CoreAstro, subdomain: RoutingSystem, directory: packages/integrations/node/test/fixtures/headers/src/pages/endpoints).
Analyze Your Own Codebase
Get architecture documentation, dependency graphs, and domain analysis for your codebase in minutes.
Try Supermodel Free