falcor-router-demo

演示如何为类似Netflix的应用程序构建路由器。(A demonstration of how to build a Router for a Netflix-like application)

Github星跟踪图

Falcor Router Demo

This project exports a Router factory for a Netflix-like Application. The Router creates a virtual JSON Graph object for a Netflix-like application, and is intended to be exposed as JSON resource on a Node Application Server. The JSON Graph object is referred to as "virtual", because it is not stored in memory anywhere. Instead the Router builds requested subsets of the JSON Graph on-demand by accessing three different databases. This creates the illusion that there is a JSON resource on the application server, when in fact the application server is completely stateless and retrieves requested data on-the-fly from the data stores.

A Virtual JSON Graph object for Netflix

When a member logs into the Netflix application, they see a personalized list of genres, each of which contains a personalized list of titles.

Netflix Homepage

The Router creates a JSON Graph object that models the Netflix domain model:

{
  genrelist: [
    {
      name: "Horror",
      titles: [
        { $type: "ref", value: ["titlesById", 234] },
        // more title references snipped
      ]
    },
    // more genre lists snipped
  ],
  titlesById: {
    234: {
      "name": "Blitz",
      "year":2011,
      "description":"With a serial killer on the loose...",
      "rating":1.7,
      "boxshot":"http://cdn.test.nflximg.net/images/9236/1919236.jpg",
      "userRating": 5
    },
    // many more titles snipped
  }
}

In reality, the data in the JSON Graph above is retrieved from several different sources:

Different Data Sources

Each Netflix user gets different set of personalized recommendations. This is accomplished by passing the Netflix Router constructor an optional userId argument.

// The only user in the database has an ID of string "1"
var router = require('falcor-router-demo')("1");

If no user ID is provided to the Router, a generic set of recommendations is made and there is no ability to set a userRating
The router allows you to retrieve data from this JSON Graph object as if it exists in memory. Currently there is only one user in the recommendations database, and their user ID is the string "1".

Important Info

This is a demonstration of how to create a Virtual JSON Graph using a Router. It is not intended to be a comprehensive example you should deploy to production. Notably PouchDB was selected because it does not require a server and is easily deployed. In reality most implementations will be retrieving data from a database server off-box. Authorization (presumably by some token system) is also an exercise left to the user.

主要指标

概览
名称与所有者Netflix/falcor-router-demo
主编程语言JavaScript
编程语言JavaScript (语言数: 1)
平台Linux, Mac, Windows
许可证
所有者活动
创建于2015-06-24 20:43:19
推送于2023-03-24 09:34:23
最后一次提交2018-06-03 16:05:18
发布数5
最新版本名称v1.0.5 (发布于 2015-10-30 11:02:21)
第一版名称v1.0.1 (发布于 2015-08-17 06:45:53)
用户参与
星数240
关注者数457
派生数57
提交数61
已启用问题?
问题数3
打开的问题数0
拉请求数8
打开的拉请求数0
关闭的拉请求数3
项目设置
已启用Wiki?
已存档?
是复刻?
已锁定?
是镜像?
是私有?