SlideShare ist ein Scribd-Unternehmen logo
1 von 77
Downloaden Sie, um offline zu lesen
REST and
Resource Oriented
  Architectures
          Gabriele Lana
    gabriele.lana@gmail.com
what is
REST?
REST is not
           a Protocol
        an Architecture
           a Software
          a Standard
a fancy name for Web Services
          a Buzzword
Representational
                             State
                             Transfer

                                Roy T. Fielding
“Architectural Styles and the Design of Network-based Software Architectures”
                            Ph.D dissertation, 2000
REST is
     a Software Architecture Style
 a set of Constraints on Component
Interaction that, when obeyed, cause
  the resulting Architecture to have
          certain properties


Roy T. Fielding http://roy.gbiv.com/untangled/2008/on-software-architecture
?
prediction for 2009
 “Roy Fielding will officially disown most of the
     RESTful authors and software packages
available. Nobody will care, or worse, somebody
  looking to make a name for themselves will
  proclaim that “Roy doesn't really understand
     REST”, and they'll be right: Roy doesn't
  understand what they consider to be REST”


    http://dotnet.dzone.com/articles/ted-neward-2009-predictions-20
why?
“... the motivation for developing REST was to
create an architectural model for how the Web
  should work, such that it could serve as the
     guiding framework for the Web protocol
                   standards”




   http://www.ics.uci.edu/~fielding/pubs/dissertation/evaluation.htm
no Silver Bullets
         REST vs
          SOA vs
         SOAP vs
          RPC vs
         WS-* vs
            ...
but sometimes
REST is better :-)
web applications
Information Flow
             RDB
HTTP
       OOP   MS
HTTP is REST

              RDB
HTTP
       OOP    MS
Impedance
        Mismatch
                   RDB
HTTP
         OOP       MS
Accidental
       Complexity
                    RDB
HTTP
          OOP       MS
Essential
       Complexity
                    RDB
HTTP
          OOP       MS
RDB
RPC    OOP    MS




HTTP
        RPC
Resource Oriented
  Architectures
              RDB
HTTP   ROA
              MS
maybe not today,
 but Yes, we Can
HTTP   ROA   DATA
REST by Example
   (Chess)
how to Design a
       RESTful service
         Step by Step

Leonard Richardson & Sam Ruby “RESTful Web Services”, O’Reilly 2007
1. every Resource
must be Identified
Pawn   Move   Bishop
Game Player
Rank
      Board Rook
           File
 Knight
     Position
    Queen   Square
every Concept in
your Domain can
  be a Resource
2. design the URIs
(Ubiquitous Language)
/position/wqd3,wkd1,bqd7,bkd8
/position/wqd3,wkd1,bqe6,bkf8/d3-d8
/move/wqd3,wkd1,bkf8-wqd8,wkd1,bkf8
/position/initial
/board/4815162342




/position/wqd3,wkd1,bqe6,bkf8


    move = d3-d8



/position/wqd8,wkd1,bqe6,bkf8
/player/50298
3. for each Resource
  expose a subset of
the Uniform Interface
Uniform Interface
    GET (Read)
   POST (Create)
   PUT (Update)
  DELETE (Delete)
GET /player/50298 HTTP/1.1



  Retrieve informations
  on identified Resource

      Idempotent,
   should not change
   the Resource State
POST /position/wqd3,wkd1,bke8 HTTP/1.1
n
move = d3-d8


HTTP/1.1 302 Found
Location: /position/wqd8,wkd1,bke8


         POST to let Resources
          process informations
POST /game HTTP/1.1
n
white = /player/50298 &
black = /player/39650


HTTP/1.1 201 Created
Location: /game/42


            POST to Create
             new Resources
PUT /board/4815162342 HTTP/1.1
n
position = /position/wqd3,wkd2,bke8


HTTP/1.1 205 Reset Content



           PUT to Update
         Resource Informations
PUT /position/wqd3,wkd1,bke8 HTTP/1.1
n
position = /position/wqd3,wkd2,bke8


HTTP/1.1 405 Method Not Allowed


           a Method can be
     not supported by a Resource
       but should not be ignored
DELETE /board/4815162342 HTTP/1.1


HTTP/1.1 204 No Content




              DELETE to
            logically Remove
                Resources
4. for each Resource
design Representations
  from and to Client
GET /position/wqd3,wkd2,bke8 HTTP/1.1
Accept: text/plain

HTTP/1.1 200 OK
Content-Type: text/plain;format=fen
n
3k4/8/3q4/8/8/8/8/5K2


   client/server Content Negotiation
           (MIME properties)
GET /position/wqd3,wkd2,bke8 HTTP/1.1
Accept: image/png;q=0.8, text/plain;q=0.2

HTTP/1.1 200 OK
Content-Type: image/png
n
PNG...


   client/server Content Negotiation
              (Preferences)
GET /position/wqd3,wkd2,bke8.png HTTP/1.1
Accept: image/png

HTTP/1.1 200 OK
Content-Type: image/png
n
PNG...


        client Explicit Request of
              Content-Type
GET /position/wqd3,wkd2,bke8.gif HTTP/1.1
Accept: image/gif

HTTP/1.1 406 Not Acceptable
             or more friendly
HTTP/1.1 300 Multiple Choices
Content-Type: application/xml
n
<choices><content type=”image/png” uri=”...”>
GET /game/42 HTTP/1.1
Accept: application/vnd.dharma.chess

<game>
 <player role=”white”>/player/1001</player>
 <player role=”black”>/player/1002</player>
 <moves>
   <position>/position/initial</position>
 </moves>
</game>


            custom Content-Type
wait...
  what about
   plain old
Web Applications?
GET /game/42 HTTP/1.1
Accept: application/xhtml+xml

<html>
 ... <a rel=”owner” href=”/player/1001”>...</a> ...
 <ul class=”moves”>
   <li><image src=”/position/initial.png”/></li>
 </ul>
</html>


       Semantic Web is not a dream
Tim Berners-Lee
 on Linked Data
“... almost 20 years ago I wanted
    to reframe the way we use
  informations ... I invented the
Word Wide Web ... now is time
       for a new reframing...”


         Tim Berners-Lee @ http://linkeddata.org
expected behavior of the web
1. Use URIs as names for things
2. Use HTTP URIs so that people
       can look up those names
3. When someone looks up a URI,
      provide useful information
4. Include links to other URIs, so
  that they can discover more things
POST /game/42 HTTP/1.1
Content-Type: application/vnd.dharma.chess

Authorization: Basic dXN1cm5hbWU6cG...
n
<game>
 <player>...</player>
 <moves>
   <position>/position/initial</position>

  <position color=”white”>
   /position/wra1,wna2,...,wpd4,...
  </position>
 </moves>
</game>



                 ... from and to the Client
5. design
typical flows
and
error
conditions
POST /game/42 HTTP/1.1
Content-Type: application/vnd.dharma.chess
Authorization: Basic dXN1...
n
<game>
 <player>...</player>
 <moves>
   <position>/position/initial</position>

  <position color=”white”>
   /position/wra1,wna2,...,wpd4,...
  </position>
 </moves>
</game>




            white Player make first move
HTTP/1.1 201 Created
Location: /game/42/position/2

      Response to the white Player
GET /game/42/position/2

HTTP/1.1 301 Moved Permanently
Location: /position/wra1,wna2,...,wpd4,...
GET /game/42 HTTP/1.1
Authorization: Basic dXN1...
n
<game>
 <player>...</player>
 <moves>...</player>
</game>



GET /game/42 HTTP/1.1
Authorization: Basic aYR5...
n
<game>
 <player>...</player>
 <moves>...</player>
</game>


                  both Players must GET
                 the game Representation
POST /game/42 HTTP/1.1
Content-Type: application/vnd.dharma.chess
Authorization: Basic aYR5...
n
<game>
 <player>...</player>
 <moves>
   <position>/position/initial</position>
   <position>/position/wra1,wna2,...,wpd4,...</position>

  <position color=”black”>
   /position/wra1,wna2,...,bpd5,...
  </position>
 </moves>
</game>



       black Player can make next move
POST /game/42 HTTP/1.1
Content-Type: application/vnd.dharma.chess
Authorization: Basic aYR5...
n
...




     what if black Player try to resend?
HTTP/1.1 409 Conflict

             the game Representation is
                    out of date
POST /game/42 HTTP/1.1
Content-Type: application/vnd.dharma.chess
Authorization: Basic aYR5...
n
...




what if black Player try to move again?
HTTP/1.1 403 Forbidden

           the black Player should wait
           for the white Player to move
POST /position/wqd3,wkd1,bke8 HTTP/1.1
n
move = d3-e8

what if we try to make a wrong move?
HTTP/1.1 404 Not Found

    Business Rules could be easily
  expressed through the Resource's
               Behavior
wait...
 what about
complex User
 Interfaces?
what about Gmail
what about Gmail
      JS
           HTTP




?     JS
what about Gmail
FAQ: cool URIs
      are RESTful?
                        OpenSocial
                     /people/{guid}/@all
Collection of all people connected to user {guid}
 http://www.opensocial.org/Technical-Resources/opensocial-spec-v081/restful-protocol.html
FAQ: REST is
   stateless?
     Statelessness says that
all possible states of the server
       are also Resources
         (Resource State)
FAQ: REST is
   stateless?
     Statelessness says that
    each message contains
all the informations necessary
  to understand the Request
       (Application State)
Representational State Transfer




                           Application
                             State
             R3
                  R4
       R2
  R1

                  CLIENT




        SERVER
                       Resource
                        State
your application
can be Discoverable
your application
 can be Testable
Testability
View             Model



       Control




       HTTP
Testability
too much code untested

 View             Model



        Control




        HTTP
Testability
too fragile and unreliable

 View             Model



        Control




        HTTP
Testability
        Player
Board

           Position
   Game

          Move




                      Js
        HTTP
Testability
 what about the view?
        Player
Board

           Position
   Game

          Move




                      Js
        HTTP
your application
can be Composable
your application
 can be Scalable
...so what Really
 means (for me)
 being RESTful?
now the Web
can talk about
    chess
Resource Oriented Architectures

Weitere ähnliche Inhalte

Was ist angesagt?

The Rest Architectural Style
The Rest Architectural StyleThe Rest Architectural Style
The Rest Architectural StyleRobert Wilson
 
REST - Representational state transfer
REST - Representational state transferREST - Representational state transfer
REST - Representational state transferTricode (part of Dept)
 
Creating Truly RESTful APIs
Creating Truly RESTful APIsCreating Truly RESTful APIs
Creating Truly RESTful APIsDomenic Denicola
 
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009Cesare Pautasso
 
The never-ending REST API design debate -- Devoxx France 2016
The never-ending REST API design debate -- Devoxx France 2016The never-ending REST API design debate -- Devoxx France 2016
The never-ending REST API design debate -- Devoxx France 2016Restlet
 
REpresentational State Transfer
REpresentational State TransferREpresentational State Transfer
REpresentational State TransferVladimir Tsukur
 
Understanding REST
Understanding RESTUnderstanding REST
Understanding RESTNitin Pande
 
The Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTThe Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTBruno Kessler Foundation
 
Restful webservice
Restful webserviceRestful webservice
Restful webserviceDong Ngoc
 
Rest presentation
Rest  presentationRest  presentation
Rest presentationsrividhyau
 
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLEREST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLEreneechemel
 
Designing REST services with Spring MVC
Designing REST services with Spring MVCDesigning REST services with Spring MVC
Designing REST services with Spring MVCSerhii Kartashov
 
Best practices for RESTful web service design
Best practices for RESTful web service designBest practices for RESTful web service design
Best practices for RESTful web service designRamin Orujov
 
Spring HATEOAS
Spring HATEOASSpring HATEOAS
Spring HATEOASYoann Buch
 

Was ist angesagt? (20)

JSON and REST
JSON and RESTJSON and REST
JSON and REST
 
The Rest Architectural Style
The Rest Architectural StyleThe Rest Architectural Style
The Rest Architectural Style
 
REST Presentation
REST PresentationREST Presentation
REST Presentation
 
REST API Design
REST API DesignREST API Design
REST API Design
 
REST - Representational state transfer
REST - Representational state transferREST - Representational state transfer
REST - Representational state transfer
 
Creating Truly RESTful APIs
Creating Truly RESTful APIsCreating Truly RESTful APIs
Creating Truly RESTful APIs
 
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009
Some REST Design Patterns (and Anti-Patterns) - SOA Symposium 2009
 
The never-ending REST API design debate -- Devoxx France 2016
The never-ending REST API design debate -- Devoxx France 2016The never-ending REST API design debate -- Devoxx France 2016
The never-ending REST API design debate -- Devoxx France 2016
 
REpresentational State Transfer
REpresentational State TransferREpresentational State Transfer
REpresentational State Transfer
 
Understanding REST
Understanding RESTUnderstanding REST
Understanding REST
 
The Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReSTThe Internet as Web Services: introduction to ReST
The Internet as Web Services: introduction to ReST
 
Restful webservice
Restful webserviceRestful webservice
Restful webservice
 
Rest web services
Rest web servicesRest web services
Rest web services
 
Rest presentation
Rest  presentationRest  presentation
Rest presentation
 
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLEREST Easy with AngularJS - ng-grid CRUD EXAMPLE
REST Easy with AngularJS - ng-grid CRUD EXAMPLE
 
RESTEasy
RESTEasyRESTEasy
RESTEasy
 
Designing REST services with Spring MVC
Designing REST services with Spring MVCDesigning REST services with Spring MVC
Designing REST services with Spring MVC
 
Best practices for RESTful web service design
Best practices for RESTful web service designBest practices for RESTful web service design
Best practices for RESTful web service design
 
REST & RESTful Web Services
REST & RESTful Web ServicesREST & RESTful Web Services
REST & RESTful Web Services
 
Spring HATEOAS
Spring HATEOASSpring HATEOAS
Spring HATEOAS
 

Ähnlich wie Resource Oriented Architectures

ReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... YawnReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... Yawnozten
 
There is REST and then there is "REST"
There is REST and then there is "REST"There is REST and then there is "REST"
There is REST and then there is "REST"Radovan Semancik
 
Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)itnig
 
Service approach for development Rest API in Symfony2
Service approach for development Rest API in Symfony2Service approach for development Rest API in Symfony2
Service approach for development Rest API in Symfony2Sumy PHP User Grpoup
 
Jordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-eraJordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-era.toster
 
Communication Protocols And Web Services
Communication Protocols And Web ServicesCommunication Protocols And Web Services
Communication Protocols And Web ServicesOmer Katz
 
When RSS Fails: Web Scraping with HTTP
When RSS Fails: Web Scraping with HTTPWhen RSS Fails: Web Scraping with HTTP
When RSS Fails: Web Scraping with HTTPMatthew Turland
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API07.pallav
 
Together Cheerfully to Walk with Hypermedia
Together Cheerfully to Walk with HypermediaTogether Cheerfully to Walk with Hypermedia
Together Cheerfully to Walk with HypermediaVladimir Tsukur
 
RESTful services
RESTful servicesRESTful services
RESTful servicesgouthamrv
 
Seattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js WorkshopSeattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js WorkshopJimmy Guerrero
 
Hacking Client Side Insecurities
Hacking Client Side InsecuritiesHacking Client Side Insecurities
Hacking Client Side Insecuritiesamiable_indian
 
REST in ( a mobile ) peace @ WHYMCA 05-21-2011
REST in ( a mobile ) peace @ WHYMCA 05-21-2011REST in ( a mobile ) peace @ WHYMCA 05-21-2011
REST in ( a mobile ) peace @ WHYMCA 05-21-2011Alessandro Nadalin
 
Ellerslie User Group - ReST Presentation
Ellerslie User Group - ReST PresentationEllerslie User Group - ReST Presentation
Ellerslie User Group - ReST PresentationAlex Henderson
 
Creating Web Services with Zend Framework - Matthew Turland
Creating Web Services with Zend Framework - Matthew TurlandCreating Web Services with Zend Framework - Matthew Turland
Creating Web Services with Zend Framework - Matthew TurlandMatthew Turland
 
Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Gaurav Bhardwaj
 

Ähnlich wie Resource Oriented Architectures (20)

Switch to Backend 2023
Switch to Backend 2023Switch to Backend 2023
Switch to Backend 2023
 
ReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... YawnReST Vs SOA(P) ... Yawn
ReST Vs SOA(P) ... Yawn
 
There is REST and then there is "REST"
There is REST and then there is "REST"There is REST and then there is "REST"
There is REST and then there is "REST"
 
RESTful Web Services
RESTful Web ServicesRESTful Web Services
RESTful Web Services
 
Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)Api Design and More (Friday Training at Itnig)
Api Design and More (Friday Training at Itnig)
 
Service approach for development Rest API in Symfony2
Service approach for development Rest API in Symfony2Service approach for development Rest API in Symfony2
Service approach for development Rest API in Symfony2
 
Jordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-eraJordi Romero Api for-the-mobile-era
Jordi Romero Api for-the-mobile-era
 
Communication Protocols And Web Services
Communication Protocols And Web ServicesCommunication Protocols And Web Services
Communication Protocols And Web Services
 
When RSS Fails: Web Scraping with HTTP
When RSS Fails: Web Scraping with HTTPWhen RSS Fails: Web Scraping with HTTP
When RSS Fails: Web Scraping with HTTP
 
Spring Boot and REST API
Spring Boot and REST APISpring Boot and REST API
Spring Boot and REST API
 
Together Cheerfully to Walk with Hypermedia
Together Cheerfully to Walk with HypermediaTogether Cheerfully to Walk with Hypermedia
Together Cheerfully to Walk with Hypermedia
 
RESTful services
RESTful servicesRESTful services
RESTful services
 
Seattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js WorkshopSeattle StrongLoop Node.js Workshop
Seattle StrongLoop Node.js Workshop
 
Hacking Client Side Insecurities
Hacking Client Side InsecuritiesHacking Client Side Insecurities
Hacking Client Side Insecurities
 
REST in ( a mobile ) peace @ WHYMCA 05-21-2011
REST in ( a mobile ) peace @ WHYMCA 05-21-2011REST in ( a mobile ) peace @ WHYMCA 05-21-2011
REST in ( a mobile ) peace @ WHYMCA 05-21-2011
 
Ellerslie User Group - ReST Presentation
Ellerslie User Group - ReST PresentationEllerslie User Group - ReST Presentation
Ellerslie User Group - ReST Presentation
 
Web Scraping with PHP
Web Scraping with PHPWeb Scraping with PHP
Web Scraping with PHP
 
Creating Web Services with Zend Framework - Matthew Turland
Creating Web Services with Zend Framework - Matthew TurlandCreating Web Services with Zend Framework - Matthew Turland
Creating Web Services with Zend Framework - Matthew Turland
 
Rest Vs Soap Yawn2289
Rest Vs Soap Yawn2289Rest Vs Soap Yawn2289
Rest Vs Soap Yawn2289
 
Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle Pinterest like site using REST and Bottle
Pinterest like site using REST and Bottle
 

Mehr von Gabriele Lana

Microservice Architectures
Microservice ArchitecturesMicroservice Architectures
Microservice ArchitecturesGabriele Lana
 
Professional Programmer 2018
Professional Programmer 2018Professional Programmer 2018
Professional Programmer 2018Gabriele Lana
 
Parse Everything With Elixir
Parse Everything With ElixirParse Everything With Elixir
Parse Everything With ElixirGabriele Lana
 
Professional Programmer (3 Years Later)
Professional Programmer (3 Years Later)Professional Programmer (3 Years Later)
Professional Programmer (3 Years Later)Gabriele Lana
 
Resource Oriented Design
Resource Oriented DesignResource Oriented Design
Resource Oriented DesignGabriele Lana
 
Agileday Coderetreat 2013
Agileday Coderetreat 2013Agileday Coderetreat 2013
Agileday Coderetreat 2013Gabriele Lana
 
Milano Legacy Coderetreat 2013
Milano Legacy Coderetreat 2013Milano Legacy Coderetreat 2013
Milano Legacy Coderetreat 2013Gabriele Lana
 
Minimum Viable Product
Minimum Viable ProductMinimum Viable Product
Minimum Viable ProductGabriele Lana
 
Professional Programmer
Professional ProgrammerProfessional Programmer
Professional ProgrammerGabriele Lana
 
It is not supposed to fly but it does
It is not supposed to fly but it doesIt is not supposed to fly but it does
It is not supposed to fly but it doesGabriele Lana
 
Introduction to Nodejs
Introduction to NodejsIntroduction to Nodejs
Introduction to NodejsGabriele Lana
 
Nodejs Explained with Examples
Nodejs Explained with ExamplesNodejs Explained with Examples
Nodejs Explained with ExamplesGabriele Lana
 

Mehr von Gabriele Lana (20)

Microservice Architectures
Microservice ArchitecturesMicroservice Architectures
Microservice Architectures
 
Professional Programmer 2018
Professional Programmer 2018Professional Programmer 2018
Professional Programmer 2018
 
Beyond Phoenix
Beyond PhoenixBeyond Phoenix
Beyond Phoenix
 
Parse Everything With Elixir
Parse Everything With ElixirParse Everything With Elixir
Parse Everything With Elixir
 
The Magic Of Elixir
The Magic Of ElixirThe Magic Of Elixir
The Magic Of Elixir
 
Professional Programmer (3 Years Later)
Professional Programmer (3 Years Later)Professional Programmer (3 Years Later)
Professional Programmer (3 Years Later)
 
Resource Oriented Design
Resource Oriented DesignResource Oriented Design
Resource Oriented Design
 
Agileday Coderetreat 2013
Agileday Coderetreat 2013Agileday Coderetreat 2013
Agileday Coderetreat 2013
 
Milano Legacy Coderetreat 2013
Milano Legacy Coderetreat 2013Milano Legacy Coderetreat 2013
Milano Legacy Coderetreat 2013
 
Minimum Viable Product
Minimum Viable ProductMinimum Viable Product
Minimum Viable Product
 
API Over HTTP
API Over HTTPAPI Over HTTP
API Over HTTP
 
coderetreat
coderetreatcoderetreat
coderetreat
 
Professional Programmer
Professional ProgrammerProfessional Programmer
Professional Programmer
 
It is not supposed to fly but it does
It is not supposed to fly but it doesIt is not supposed to fly but it does
It is not supposed to fly but it does
 
Introduction to Nodejs
Introduction to NodejsIntroduction to Nodejs
Introduction to Nodejs
 
MongoDB With Style
MongoDB With StyleMongoDB With Style
MongoDB With Style
 
Nosql
NosqlNosql
Nosql
 
Magic of Ruby
Magic of RubyMagic of Ruby
Magic of Ruby
 
Nodejs Explained with Examples
Nodejs Explained with ExamplesNodejs Explained with Examples
Nodejs Explained with Examples
 
Why couchdb is cool
Why couchdb is coolWhy couchdb is cool
Why couchdb is cool
 

Resource Oriented Architectures