Firebase
Firebase gives you the tools and infrastructure you need to build better mobile and web apps, improve app quality, and grow your business.
Overview
Firebase is a mobile and web application development platform that provides developers with a variety of tools and services to build and run their apps. It was first developed by Firebase Inc. in 2011, but was later acquired by Google in 2014.
In this boilerplate already supports integration with Firebase, several Firebase features that are already in boilerplate
How to use
Here we use Firebase. The installation method is as follows below.
Step 1: Create a Firebase project
Head to the Firebase Console, create a new project, and give it a name.
Once the project is created, navigate to the "Project Settings" page by clicking the gear icon in the top left corner of the Firebase Console.
In the "Project Settings" page, select the "General" tab and take note of the "Project ID". You will need this later.
Step 2: Install Firebase SDK
install the required Firebase dependencies. Use the following command to install the Firebase packages using npm or yarn.
Step 3: Set up Firebase in Your App
create a file named firebase.ts
(or any name you prefer) in the src/services
directory. In this file, initialize Firebase with your Firebase configuration.
Step 4: Add environment variable for firebase
We need update your .env
data files.
Step 5: Implementation firebase functions
Below are some examples of using functions from several firebase features.
To log events, simply call the logEvent
function on the Firebase Analytics instance:
Replace 'my_event'
with the name of the event you want to log and { my_param: 'param_value' }
with any parameters you want to include with the event.
Step 6: Testing analytics metric, performance and log events
First install browser extentions Google Analytics Debugger. Turn it on and then run trigger event log on your code. For view realtime event you can see in DebugView menu in firebase console.
Last updated