Подскажите в какую сторону хотяб смотреть 🙂
req.url и req.method никак не получаеться
import {getFormattedDate} from './functions.js'
export const logger = ()=>{
return (res,req,next) => {
console.log(`${req.url} ${req.method} ${getFormattedDate()}`);
next();
}
}