Posts for firebase

Understanding Firebase Realtime Database using React

Firebase has two types of database: Realtime Database and Cloud Firestore. Both databases are NoSQL-like databases so the database is structured as key-value pairs. In this tutorial, we’ll focus on the Realtime database and explore how the security rules secure the integrity of the data in our database. We will build a note-taking called Easi […]

February 20, 2020 in React & Tutorials

Authenticating React App with Firebase

Sometimes you want to build a quick prototype without worrying about backend logic and infrastructure. This is where Firebase really shines and combined with React, you can get authentication set up really quickly. This article covers how to authenticate your web app with React and Firebase. You need to be familiar with:  Higher-Order Components React […]

February 1, 2020 in React & Tutorials

Add Push Notifications to a Web App with Firebase

Traditionally, one of the main ways to bring users back to your website/web app is through email newsletters. While email newsletters can be used effectively, the Clickthrough Rate (CTR) when compared to web push notifications is significantly less. When used appropriately, web push notifications can drive more engagement to your web app. In this tutorial, […]

December 31, 2019 in Tutorials

Using Firebase Authentication in a Vue Application

In this tutorial, we are going to build a simple Vue application using Vue CLI and firebase authentication.But first, let’s get our system set up for Vue development. Install Vue CLI Vue CLI requires node.js version 8.9 and above. So ensure you have the right version of node.js installed. You can check your node.js version […]

October 29, 2019 in Tutorials & Vue