Skip to content

Instantly share code, notes, and snippets.

@gunnigylfa
Created March 1, 2017 22:20
Show Gist options
  • Save gunnigylfa/9574866380b74501a10459ecdbc955bd to your computer and use it in GitHub Desktop.
Save gunnigylfa/9574866380b74501a10459ecdbc955bd to your computer and use it in GitHub Desktop.
A GET resource for our hero collection
// GET '/v1/heroes' Get (Read) all heroes
api.get('/', (req, res) => {
Hero.find({}, (err, heroes) => {
if (err) {
return res.send(err);
}
return res.json(heroes);
});
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment