Skip to content

Instantly share code, notes, and snippets.

@tauren
Created June 17, 2011 22:43
Show Gist options
  • Save tauren/1032527 to your computer and use it in GitHub Desktop.
Save tauren/1032527 to your computer and use it in GitHub Desktop.
app.get '/realms', (req,res) ->
name = req.query.jsonp || 'jsonp'
res.contentType 'application/x-javascript'
fs.readFile __dirname + '/../../data/realms.json', (err,data) ->
if err
throw error
res.send name + '(' + data + ');'
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment