Skip to content

Instantly share code, notes, and snippets.

@CodeMan99
Last active November 19, 2024 19:39
Show Gist options
  • Save CodeMan99/a3d77f3a10141a7bd855cd25ddd371a9 to your computer and use it in GitHub Desktop.
Save CodeMan99/a3d77f3a10141a7bd855cd25ddd371a9 to your computer and use it in GitHub Desktop.
JSON request debugging server
const http = require('http');
const server = http.createServer(async function(req, res) {
const buffers = [];
for await (const data of req) {
buffers.push(data);
}
let body = null;
if (buffers.length > 0) {
const rawBody = Buffer.concat(buffers);
try {
body = JSON.parse(rawBody.toString('utf-8'));
} catch (_) {
body = rawBody.toString('base64');
}
}
console.dir({
request: {
method: req.method,
url: req.url,
headers: req.headers,
},
body,
}, {colors: true, depth: 8});
res.writeHead(200, {'Content-Type': 'application/json'});
res.end('{"message":"pong"}');
});
server.listen(function() {
console.dir(this.address());
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment