Firebase is a powerful API to store and sync data in realtime helping front-end developers build realtime apps for the web. You can save data, update data, and listen for data changes in realtime with only a few lines of code. Data is stored as standard JSON and is accessible from any platform. Firebase also has safety and security built in to keep your data and your users data safe.
Adding Firebase to the page
In order to use Firebase in your application you have to incluse the firebase js reference in the page header.
<script src="https://cdn.firebase.com/js/client/2.0.2/firebase.js"></script>
Continue reading →