AWS Lambda (Node.js) JavaScript
AWS Lambda (Node.js) کے لیے JavaScript کا اسنیپٹ جو /pixel.gif کی درخواستوں کا جواب خالی GIF سے دیتا ہے، جسے اسٹارٹ اپ پر ایک بار ڈیکوڈ کیا جاتا ہے۔
AWS Lambda (Node.js) JavaScript
// index.mjs - behind an API Gateway HTTP API route "GET /pixel.gif" or a function URL.
// Binary bodies travel base64-encoded, so the GIF stays in base64 here.
const GIF_BASE64 = 'R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==';
export const handler = async () => ({
statusCode: 200,
headers: { 'Content-Type': 'image/gif', 'Cache-Control': 'no-store' },
body: GIF_BASE64,
isBase64Encoded: true,
});
ہم نے یہ اسنیپٹ چلایا اور اس کی لوٹائی ہوئی بائٹس کا موازنہ کیا۔
جانچیں
curl -sI http://localhost:8080/pixel.gif
آفیشل سائٹ: AWS Lambda (Node.js)