Ekspresikan URL JS dengan ID

app.get('/:id', function(req, res) {
    res.send('id: ' + req.params.id);
});
Outstanding Owl