1
0
Fork 0
mirror of https://github.com/kou029w/http-echo.git synced 2025-01-18 08:05:06 +00:00
http-echo/api/echo.js
2020-05-16 20:44:25 +09:00

11 lines
248 B
JavaScript

module.exports = (req, res) => {
res.json({
headers: req.headers,
body: req.body == null ? null : req.body,
host: req.headers.host,
method: req.method,
target: req.url,
query: req.query,
cookies: req.cookies,
});
};