Next.js Discord

Discord Forum

debug tools for nextjs request

Unanswered
Tan posted this in #help-forum
Open in Discord
TanOP
Hello, i would like to know if there are ways to debug request in nextjs serverside just like one can it do in browser with devtools

3 Replies

TanOP
currently i go with
console.log(req) // Req is NextApiRequest

or when i do post serverside with axios
const res = await axios.post(...);
console.log(res);
Are there better ways to monitor what requests serverside other than in console?
Cuban Crocodile
Have you figured this out?