Morgan is a popular HTTP request logger middleware for Node.js, typically used with Express applications. It logs HTTP requests in various formats. Link to the documentation is here. Commonly uses format are ‘combined’, ‘common’, and ‘tiny’.

// Example usage
app.use(morgan("tiny"));