emptygif
언어: 한국어

모든 언어 및 프레임워크

RedwoodSDK TypeScript

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

RedwoodSDK TypeScript

설치
npx create-rwsdk my-app
파일
worker.tsx
실행
npm run dev
// src/worker.tsx - a route before render() answers with its own Response
import { render, route } from 'rwsdk/router';
import { defineApp } from 'rwsdk/worker';

import { Document } from '@/app/document';
import { Home } from '@/app/pages/home';

const GIF = Uint8Array.from(atob('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw=='), (c) => c.charCodeAt(0));

export default defineApp([
  route('/pixel.gif', () =>
    new Response(GIF, {
      headers: {
        'Content-Type': 'image/gif',
        'Content-Length': String(GIF.length),
        'Cache-Control': 'no-store',
      },
    }),
  ),
  render(Document, [route('/', Home)]),
]);

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

확인

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

공식 사이트: RedwoodSDK

TypeScript의 다른 예제