back

by mayop100·13y ago·view on hn ↗
Firebase persists all data permanently (and we back it up, etc.), so your data is "saved" just by using Firebase.

If you want to access the data from your own servers, we recommend actually having your servers talk to Firebase directly. So the data flow becomes (Client) -> (Firebase) -> (Other Clients and your servers)

We provide a Node.js client and a REST API to make this easy.

1 comments
Awesome! I guess I'll be giving Firebase a try then, thanks for clearing that up.