req.path, req.params, req.query в основном являются частью действия на основе маршрута.1. req.path: возвращает путь к указанному URL-адресу запроса.2. req.params: Используется для получения значения параметра URL-адреса запроса.3.req.query: Используется для получения значения запроса, встроенного в URL запроса.
Пример: Для URL: https://your_url.com/52926562?value="test"
app.get('/:id', (req, res)=>{
/*Return the path of the request*/
console.log(req.path);
/*Return the id of the request url*/
console.log(req.params.id);
/*Return the path of the request*/
console.log(req.query.value);
res.send('ok');
})