Skip to content

Instantly share code, notes, and snippets.

@haldarmahesh
Last active June 22, 2019 05:35
Show Gist options
  • Save haldarmahesh/22b67501a8518520d1f4ec532f1f681f to your computer and use it in GitHub Desktop.
Save haldarmahesh/22b67501a8518520d1f4ec532f1f681f to your computer and use it in GitHub Desktop.
// REST implementation for getEmployeeById
router.get('/api/employees/:id', (req, res) => {
const employeeId = req.params.id;
return res.json(employeeService.getById(employeeId));
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment