emptygif
언어: 한국어

모든 언어 및 프레임워크

Fresh TypeScript

/pixel.gif 요청에 빈 GIF로 응답하는 Fresh용 TypeScript 스니펫입니다. GIF는 시작할 때 한 번만 디코딩합니다.

Fresh TypeScript

설치
deno run -Ar jsr:@fresh/init
파일
main.ts
실행
deno task dev
// main.ts - a programmatic route (Fresh 2)
import { App } from 'fresh';
import { decodeBase64 } from 'jsr:@std/encoding/base64';

const GIF = decodeBase64('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==');

export const app = new App()
  .get('/pixel.gif', () =>
    new Response(GIF, {
      headers: { 'Content-Type': 'image/gif', 'Cache-Control': 'no-store' },
    }))
  .fsRoutes();

이 스니펫은 실행해 보고, 반환된 바이트를 비교했습니다.

확인

curl -sI http://localhost:8080/pixel.gif

공식 사이트: Fresh

TypeScript의 다른 예제