Skip to content

Instantly share code, notes, and snippets.

@KyleAMathews
Created November 7, 2011 19:54
Show Gist options
  • Save KyleAMathews/1345969 to your computer and use it in GitHub Desktop.
Save KyleAMathews/1345969 to your computer and use it in GitHub Desktop.
My five line node.js/coffeescript/mongodb RESTful API
app.get '/groups', (req, res) ->
Group = mongoose.model 'group'
Group.find (err, groups) ->
if err then console.error err
res.json groups
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment