Skip to content

Instantly share code, notes, and snippets.

@drobbins
Last active December 22, 2015 01:08
Show Gist options
  • Save drobbins/6393817 to your computer and use it in GitHub Desktop.
Save drobbins/6393817 to your computer and use it in GitHub Desktop.
Sinatra vs. Express + Coffeescript.
app = require('express')()
app.get '/hi', (req, res) ->
res.end "Hello World"
require 'sinatra'
get '/hi' do
"Hello World!"
end
@wilkinson
Copy link

Very nice! What happens when you start adding MongoDB calls in, though?

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment