Upgrade to Pro — share decks privately, control downloads, hide ads and more …

falcor-serverless

 falcor-serverless

Yosuke Kurami

August 11, 2016
Tweet

More Decks by Yosuke Kurami

Other Decks in Programming

Transcript

  1. About me • @Quramy (Yosuke Kurami) • Frontend Web Developer

    at WACUL INC. • develop SPA with Angular(1 and 2) • झຯͰTypeScript༻ͷVimϓϥΪϯ։ൃ͠·͢ • http://vimawesome.com/plugin/tsuquyomi 

  2. Falcor: Access as the JSON way import { Model }

    from "falcor"; import { dataSource } from "./dataSource"; import assert from "assert"; new Model({ source: dataSource, }).get( "article['123']['id', 'title']", "article['123'].author['id', 'name']" ).subscribe(response => { assert.deepEqual(response.json, { article: { "123": { id: "123", title: "graph api", author: { id: "u0001", name: "quramy" } } } }); });
  3. Backends For Frontends (BFF) The BFF is tightly coupled to

    a specific user experience, and will typically be maintained by the same team as the user interface. http://samnewman.io/patterns/architectural/bff/#bff