├── README.md ├── index.html └── messages-sample.json /README.md: -------------------------------------------------------------------------------- 1 | # Vue.js + Firebase Realtime Database 2 | [](https://vueschool.io/courses/vuejs-firebase-realtime-database) 3 | 4 | This repository contains the example code for the [Vue.js + Firebase Realtime Database](https://vueschool.io/courses/vuejs-firebase-realtime-database) course. 5 | 6 | This course will teach you how to use Firebase Realtime Database in your vue.js applications. The example app is a realtime chat room, and our goal is to make sure all online users get updates in realtime whenever a message is added, edited or deleted. 7 | 8 | #### Topics covered: 9 | - How to set up and connect to a new Firebase Realtime Database 10 | - How to read, write, update and delete data 11 | - What it means that Firebase Realtime Database is event-driven 12 | - How to update a website when changes take place 13 | - How to implement notifications when other users make changes 14 | 15 | The course is free. [Enroll at Vue School!](https://vueschool.io/courses/vuejs-firebase-realtime-database) 16 | -------------------------------------------------------------------------------- /index.html: -------------------------------------------------------------------------------- 1 | 2 | 3 |
4 |