Expresse redirecionamento com dados de postagem
app.post('/', function(req, res) {
res.redirect(307, '/test');
});
Krushn
app.post('/', function(req, res) {
res.redirect(307, '/test');
});