面白いものを見つけた:Firebase
757 ワード
VueのHack New Demoを読んでいたら、強そうなものを見つけましたFirebase:
わずか数行でサーバから最初の100件の文章のコードを取得し,すべての方法をapiにカプセル化した.
この書き方は私の好奇心を引きつけて、後で時間をかけてこの技術の実現の細部を見て、まず文集を建てます.
いくつかの資料を探しています.
npmアドレス:https://www.npmjs.com/package/firebase
公式サイト:https://firebase.google.com/
手順:https://firebase.google.com/docs/web/setup
ログインアカウント:https://console.firebase.google.com/?pli=1
/**
* Subscribe to real time updates of the top 100 stories,
* and cache the IDs locally.
*/
import Firebase from 'firebase'
const api = new Firebase('https://hacker-news.firebaseio.com/v0')
api.child('topstories').on('value', snapshot => {
topStoryIds = snapshot.val()
store.emit('topstories-updated')
})
わずか数行でサーバから最初の100件の文章のコードを取得し,すべての方法をapiにカプセル化した.
この書き方は私の好奇心を引きつけて、後で時間をかけてこの技術の実現の細部を見て、まず文集を建てます.
いくつかの資料を探しています.
npmアドレス:https://www.npmjs.com/package/firebase
公式サイト:https://firebase.google.com/
手順:https://firebase.google.com/docs/web/setup
ログインアカウント:https://console.firebase.google.com/?pli=1