Posts by Douglas Souza Luz • 11 points
1 post
-
1
votes2
answers65
viewsA: Express JS Routing
Hello, According to the express documentation you can use the redirect method ex app.use('/route', (req, res) => { if (condicao) { res.redirect('/admin') } })…