Index of Firebase related articles

With the news of Google's acquisition of Firebase, Firebase has returned to the developer's perspective, so I created this project on github: https://github.com/justjavac/awesome-firebase

Firebase  is a data synchronization cloud service. Unlike Dropbox's "files", Firebase synchronizes "data". The service targets are website developers, helping them develop applications with "Real-Time" features.

Developers only need to reference an API library file to read and write data using various interfaces of the standard REST API. They only need to write HTML+CSS+JavaScrip front-end code, without server-side code (if integration is required, it is very simple), saving The next time allows developers to focus on developing application functions, improving design and experience, and solving practical problems for users.

Does it sound familiar? Yes, it is noBackend (no backend programming). You only need to pay attention to the front-end code. When you need to add, delete, modify, and check data, you can send a REST request. The back-end work is done by Firebase.

Maybe you also dare to be interested in another project I translated: Standard Guide for Building APIs with JSON

article

video

News

tool

  • Firepad is  an editor built on the Firebase database platform, which can edit in real-time and multi-person collaboration
  • firebase-tools  Firebase command line tools
  • grunt-firebase is  used to update the Grunt task of firebase data

Library

project

Guess you like

Origin blog.csdn.net/justjavac/article/details/40376045