Skip to content

Instantly share code, notes, and snippets.

@Edudjr
Created October 16, 2018 21:15
Show Gist options
  • Save Edudjr/1ba0457fda60c3fccaa42a1d4e0fa522 to your computer and use it in GitHub Desktop.
Save Edudjr/1ba0457fda60c3fccaa42a1d4e0fa522 to your computer and use it in GitHub Desktop.
router.get('/:id', function(req, res) {
var id = req.params.id;
var json = {
userId: id,
userName: "Agente "+id,
age: 27,
address: {
streetNumber: "3000",
streetName: "Wellington Square Street"
}
}
res.json(json);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment