Oak TypeScript
/pixel.gif 요청에 빈 GIF로 응답하는 Oak용 TypeScript 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.
Oak TypeScript
import { Application, Router } from 'jsr:@oak/oak';
import { decodeBase64 } from 'jsr:@std/encoding/base64';
const GIF = decodeBase64('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');
const router = new Router();
router.get('/pixel.gif', (ctx) => {
ctx.response.type = 'image/gif';
ctx.response.headers.set('Cache-Control', 'no-store');
ctx.response.body = GIF;
});
const app = new Application();
app.use(router.routes());
await app.listen({ port: 8080 });
이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.
확인
curl -sI http://localhost:8080/pixel.gif
TypeScript의 다른 예제
- Next.js (App Router)
- Hono
- Bun.serve
- Elysia
- Deno.serve
- SvelteKit
- Nuxt (Nitro server route)
- Astro
- React Router (framework mode, ex-Remix)
- TanStack Start
- SolidStart
- Fresh
- Encore.ts
- NestJS
- AdonisJS
- Cloudflare Workers
- Cloudflare Pages Functions
- Deno Deploy (deno serve)
- Vercel Functions
- Netlify Functions
- Netlify Edge Functions
- Deno one-liner