mirror of
https://github.com/kou029w/http-echo.git
synced 2025-01-19 00:18:07 +00:00
12 lines
248 B
JavaScript
12 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,
|
||
|
});
|
||
|
};
|