Last active
November 19, 2024 19:39
-
-
Save CodeMan99/a3d77f3a10141a7bd855cd25ddd371a9 to your computer and use it in GitHub Desktop.
JSON request debugging server
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
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