Hekel1989
11/6/2017 - 3:25 PM

ExpressJS

//Dynamic ID - the :id will change dynamically with whatever input from the client. req.params.id will make so that this is read by the server
app.get('/profile/:id', function(req, res){
  res.send('You requested to see a profile with the id of ' + req.params.id);