app.get('/:name', (req, res) => {
Products.findAll({
raw: true
})
.then(products => {
// если не совпадает то 404
if ( products.name + '_' + products.id !== req.params.name) {
res.render('404.hbs', {
// ...
})
return
}
res.render('products.hbs', {
products: products
})
})
.catch(err => console.log(err));
})