Answers for "route paths, in combination with a request method, define the endpoints at which requests can be made. which of following are valid form of route path?"

8

express router file

var express = require('express');
var router = express.Router();

// middleware that is specific to this router
router.use(function timeLog (req, res, next) {
  console.log('Time: ', Date.now());
  next();
});
// define the home page route
router.get('/', function (req, res) {
  res.send('Birds home page');
});
// define the about route
router.get('/about', function (req, res) {
  res.send('About birds');
});

module.exports = router;
Posted by: Guest on May-03-2020

Code answers related to "route paths, in combination with a request method, define the endpoints at which requests can be made. which of following are valid form of route path?"

Code answers related to "Javascript"

Browse Popular Code Answers by Language