emptygif
Idioma: Português

Todas as linguagens e frameworks

Azure Functions (Node.js v4 model) JavaScript

Um snippet em JavaScript para Azure Functions (Node.js v4 model) que responde às requisições para /pixel.gif com o GIF vazio, decodificado uma única vez na inicialização.

Azure Functions (Node.js v4 model) JavaScript

Instalar
npm i @azure/functions
Arquivo
pixel.js
Executar
func start
// src/functions/pixel.js
import { app } from '@azure/functions';

const GIF = Buffer.from('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==', 'base64');

app.http('pixel', {
  methods: ['GET'],
  authLevel: 'anonymous',
  // Routes have no leading slash and sit under the "api" prefix unless
  // extensions.http.routePrefix is set to "" in host.json.
  route: '/pixel.gif'.slice(1),
  handler: async () => ({
    body: GIF,
    headers: {
      'Content-Type': 'image/gif',
      'Content-Length': String(GIF.length),
      'Cache-Control': 'no-store',
    },
  }),
});

Executamos este snippet e comparamos os bytes que ele retornou.

Verificar

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

Site oficial: Azure Functions (Node.js v4 model)

Mais em JavaScript