Upgrade to Pro
— share decks privately, control downloads, hide ads and more …
Speaker Deck
Speaker Deck
PRO
Sign in
Sign up for free
A Tale of Two Frameworks
Sau Sheong Chang
February 19, 2014
0
57
A Tale of Two Frameworks
https://github.com/sausheong/server-frameworks
Sau Sheong Chang
February 19, 2014
Tweet
Share
More Decks by Sau Sheong Chang
See All by Sau Sheong Chang
Genetic Algorithms with Go
sausheong
0
63
Programming Complexity
sausheong
0
500
Rollicking Ruby Robots Rule the World
sausheong
0
200
3 Things You May Not Know About The Go Template Engine
sausheong
0
120
Money, Sex and Evolution (v3)
sausheong
0
53
Polyglot
sausheong
0
29
Developing Web Applications with Go
sausheong
7
660
Money, Sex and Evolution
sausheong
1
54
Ruby, Rock and Roll
sausheong
3
270
Featured
See All Featured
Designing Dashboards & Data Visualisations in Web Apps
destraynor
224
49k
Embracing the Ebb and Flow
colly
73
3.4k
Six Lessons from altMBA
skipperchong
14
1.4k
Design and Strategy: How to Deal with People Who Don’t "Get" Design
morganepeng
105
16k
Support Driven Design
roundedbygravity
86
8.5k
Git: the NoSQL Database
bkeepers
PRO
415
59k
Debugging Ruby Performance
tmm1
65
10k
Java REST API Framework Comparison - PWX 2021
mraible
PRO
11
4.7k
Visualization
eitanlees
125
11k
Agile that works and the tools we love
rasmusluckow
319
19k
Web Components: a chance to create the future
zenorocha
303
40k
Refactoring Trust on Your Teams (GOTO; Chicago 2020)
rmw
19
1.4k
Transcript
A Tale of Two Frameworks Chang Sau Sheong @sausheong
“It was the best of times, it was the worst
of times …”
None
How web frameworks work
Server Client Request Response Header Body Header Body HTTP methods:
GET, POST etc Status codes: 200, 404 etc
None
Parts of a server-side web framework
Models
Routes
Views
Assets
Minimalist Sinatra + Haml + Sequel + Postgres
Alternative Cuba + Mustache + Mongoid + MongoDB
Minimalist
Least effort
Code for humans
Principle of Good Enough
Sinatra
“Domain specific language for quickly creating web applications.”
None
*HTML abstraction markup language
“Markup should be beautiful.”
%section.container %h1= post.title %h2= post.subtitle .content = post.content <section class=”container”>
<h1><%= post.title %></h1> <h2><%= post.subtitle %></h2> <div class=”content”> <%= post.content %> </div> </section>
None
None
“Ruby object relational mapper.”
None
Migrate (Create the database tables)
Model
None
Alternative
Cuba
“Ruby microframework for web development.”
Hierarchical routes
Focus on matching
None
{ Mustache
“Logic-less templates.”
There are only tags.
None
None
“Document database with JSON- styled documents.”
Mongoid
“Ruby object document mapper for MongoDB.”
None
https://github.com/sausheong/server-frameworks
Questions?