Node.js standard library (node:http) JavaScript
一个用于 Node.js standard library (node:http) 的 JavaScript 代码片段,以空 GIF 响应对 /pixel.gif 的请求,GIF 在启动时只解码一次。
Node.js standard library (node:http) JavaScript
import { createServer } from 'node:http';
const GIF = Buffer.from('R0lGODlhAQABAIAAAP///wAAACH5BAEAAAAALAAAAAABAAEAAAICRAEAOw==', 'base64');
createServer((req, res) => {
const { pathname } = new URL(req.url, 'http://localhost');
if (req.method !== 'GET' || pathname !== '/pixel.gif') {
res.writeHead(404).end();
return;
}
res.writeHead(200, {
'Content-Type': 'image/gif',
'Content-Length': GIF.length,
'Cache-Control': 'no-store',
});
res.end(GIF);
}).listen(8080);
我们运行了此代码片段,并比对了它返回的字节。
验证
curl -sI http://localhost:8080/pixel.gif
官方网站: Node.js standard library (node:http)