To fix TypeError: Converting circular structure to JSON in Node.js, we avoid stringifying the req object with JSON.stringify.
For instance, we write
console.log(req);
to call console.log to log the req object which has a circular structure.