I wish to know how can I have both get and post request handled by app.use the way I do it using app.route
app.use('/', (req, res, next) => {
    if (isLaunched) {
        return next()
    }
    // You can also render if you want
    res.render('coming-soon')
});
How can I handle a post request to this?
 
     
     
     
    