Firebase In Depth
Firebase In Depth, available at $79.99, has an average rating of 4.54, with 70 lectures, based on 1452 reviews, and has 10611 subscribers.
You will learn about Code in Github repository with downloadable ZIP files per section In-depth coverage of the Firestore NoSQL Database Complete Transactional Serverless CRUD Example Email and Social Authentication With Firebase Authentication Full RBAC Role-Based Authorization with Firestore Security Rules Secure Serverless File Upload with Firebase Storage High-performance, free SSL hosting with Firebase Hosting Database Triggers with Firebase Cloud Functions Secure REST Endpoints with Firebase Cloud Functions Serverless Architecture Design Serverless Angular development with AngularFire Full drop-in Authentication solution: Firebase UI Full Production Deployment This course is ideal for individuals who are Any Developers trying to learn the Firebase ecosystem from scratch or Angular Developers looking for the best possible backend to go along with Angular It is particularly useful for Any Developers trying to learn the Firebase ecosystem from scratch or Angular Developers looking for the best possible backend to go along with Angular.
Enroll now: Firebase In Depth
Summary
Title: Firebase In Depth
Price: $79.99
Average Rating: 4.54
Number of Lectures: 70
Number of Published Lectures: 70
Number of Curriculum Items: 70
Number of Published Curriculum Objects: 70
Original Price: $74.99
Quality Status: approved
Status: Live
What You Will Learn
- Code in Github repository with downloadable ZIP files per section
- In-depth coverage of the Firestore NoSQL Database
- Complete Transactional Serverless CRUD Example
- Email and Social Authentication With Firebase Authentication
- Full RBAC Role-Based Authorization with Firestore Security Rules
- Secure Serverless File Upload with Firebase Storage
- High-performance, free SSL hosting with Firebase Hosting
- Database Triggers with Firebase Cloud Functions
- Secure REST Endpoints with Firebase Cloud Functions
- Serverless Architecture Design
- Serverless Angular development with AngularFire
- Full drop-in Authentication solution: Firebase UI
- Full Production Deployment
Who Should Attend
- Any Developers trying to learn the Firebase ecosystem from scratch
- Angular Developers looking for the best possible backend to go along with Angular
Target Audiences
- Any Developers trying to learn the Firebase ecosystem from scratch
- Angular Developers looking for the best possible backend to go along with Angular
This Course in a Nutshell
If you are looking for the best backend to go along with your Angular frontend, then the Firebase ecosystem (with the Firestore NoSQL database) is the right choice for you.
Today, it’s simpler than ever to develop Firebase applications thanks to the latest Firebase development tools, including the awesome local emulator (covered in detail in the course).
Firebase allows us to build applications in a mostly serverless way, in the sense that when using it we only have to write a little bit of server-side code, if any at all in a lot of cases.
With Firebase, we can not only query our database but also do data modification operations straight from the browser, in a secure way. So how is this possible?
The way that this works is that the Firestore database enables us to declaratively accept or deny incoming requests using Firestore Security Rules.
A key ingredient for this to work is Firebase Authentication, which we will cover in detail in this course. Firebase is, of course, frontend agnostic, meaning that it will work with any frontend technology. So why does it work especially well with Angular?
This is due to the powerful AngularFire library, which allows us to easily query and modify Firestore data in a reactive way using the AngularFire Observable-based API.
Besides Firestore, the Firebase ecosystem provides everything else that you need for building a fully functioning backend solution. This includes secure file upload via Firebase Storage and the hosting of your static files via Firebase Hosting.
For the rare cases when you need some server-side code, you can do that too in Firebase using Firebase Cloud Functions, which are node-based stateless functions running on the Google Cloud infrastructure.
Using Cloud Functions, you can implement server-only functionality like database triggers, or even REST endpoints for operations that can only be done on the server, such as user creation, or payments.
The Firebase ecosystem provides a complete solution for quickly building the backend of your web application, allowing you to focus more of your development time on the frontend.
Course Overview
In this course, we are going to take a sample Angular application and we are going to connect it to a Firestore database. We will learn how to do all sorts of database queries and we will provide a complete CRUD example using AngularFire.
We will set up the local development emulator from the very beginning, which will allow us to use a local database with predefined authentication users and some initial data.
The emulator will also allow us to test cloud functions locally as well as security rules, which is super convenient.
From there, we are going to add security to the application, starting with authentication using Firebase Authentication. We will implement both email and password and social login using the Firebase UI library.
We are also going to implement role-based authorization using Firebase Authentication custom claims and the AngularFire Authentication router guard.
We will implement an administration screen that allows an existing administrator to create other users, including other administrators in a secure way.
For this, we will need some backend code, so we will be using Firebase Cloud Functions for that. We will also show how to use Cloud Functions to implement other commonly used backend features, such as database triggers.
We will show how to do secure file upload of an image thumbnail using Firebase Storage.
We will end the course by doing a full production deployment using Firebase Hosting, and testing everything out in a non-emulated production environment.
Table of Contents
This course will go over the following topics:
-
Introduction to NoSQL data modeling
-
Documents vs Collections
-
Firestore Unique Identifiers
-
Querying a database using the Firebase SDK
-
Angular Service Layer Design with AngularFire
-
Pagination
-
Indexes, Composite Indexes
-
Data Modification with AngularFire
-
Transactions
-
Multi-path Updates
-
Full CRUD example with AngularFire
-
Authentication with Firebase Authentication
-
Protecting screens with the AngularFire Authentication guard
-
Securing Database access with Firebase Security Rules
-
Full role-based authorization using Firebase Authentication custom claims
-
Secure file upload with Firebase Storage
-
Firebase Storage Rules
-
Server-side image processing with Firebase Cloud Functions
-
Firebase Cloud Functions Database Triggers
-
Firebase Could Functions HTTP endpoints
-
Cloud Functions Service Accounts
-
Production Deployment with Firebase Hosting
What Will You Learn In this Course?
In this course, you will learn everything that you need to know to become a proficient Firebase developer. You will understand how to model a Firestore database, and how to interact with it using AngularFire.
You will know how to implement secure, transactional data modification queries straight from the frontend using the AngularFire Observable-based API. You will know how to secure your data using Firestore Security rules, and how to implement role-based Authorization.
You will learn how to design your system in order for it to need minimum backend code, that when necessary can be implemented using Firebase Cloud Functions.
At the end of the course, you will feel confident designing and developing applications in a serverless way using the complete Firebase ecosystem.
Have a look at the course free lessons below, and please enjoy the course!
Course Curriculum
Chapter 1: Introduction
Lecture 1: Firebase & AngularFire In Depth – Helicopter View
Lecture 2: IMPORTANT
Lecture 3: Course Introduction and Development Environment Setup
Lecture 4: Set Up a Firebase Account and Populate a Firestore Database
Lecture 5: Firestore Fundamentals – What is a Firestore Document?
Lecture 6: Firestore Fundamentals – Collections, Unique Identifiers and Relationships
Lecture 7: Firestore Fundamentals – Introduction to Collection Queries using AngularFire
Lecture 8: Firestore Fundamentals – Performance Guarantees and Indexes
Lecture 9: Firestore Fundamentals – Collection Group Queries
Lecture 10: Firestore Fundamentals – Realtime Capabilities
Chapter 2: Angular Service Layers with AngularFire and Firestore
Lecture 1: New Section Introduction – Beginning the Implementation of the Home Component
Lecture 2: An Example of a Firestore array-contains Query
Lecture 3: Converting Firestore Query Results to a Domain Model
Lecture 4: Finishing the Implementation of the Home Component
Lecture 5: The Firebase Local Emulator – Why do we need it?
Lecture 6: Setting Up a Firebase Project with firebase init
Lecture 7: Introduction to the Firebase Local Emulator
Lecture 8: AngularFire CRUD Example – The Create Course Form
Lecture 9: AngularFire CRUD Create Service – API Design
Lecture 10: AngularFire CRUD Create – Service Implementation
Lecture 11: AngularFire CRUD Update – Service Implementation
Lecture 12: AngularFire CRUD Update – Building the Edit Course Dialog
Lecture 13: AngularFire CRUD Update – Final Implementation and Demo
Lecture 14: AngularFire CRUD Delete – Implementation and Demo
Lecture 15: Understanding Firestore Transactional Batched Writes
Lecture 16: Course Screen – Pre-Fetching Data with a Course Resolver
Lecture 17: Course Screen – Router Resolver Implementation and Demo
Lecture 18: How to Implement a Firestore Paginated Query
Lecture 19: Firestore Data Pagination Example – Implementation Conclusion and Demo
Chapter 3: Firebase Authentication and Firestore Security Rules
Lecture 1: Introduction to Firebase Authentication
Lecture 2: Implementing Authentication Using Firebase UI
Lecture 3: Implementing an Angular User Service – API Design
Lecture 4: User Service – Adapting the UI to the User Authentication Status
Lecture 5: Introduction to Firestore Security Rules
Lecture 6: Firestore Security Rules Fundamentals – Nested Rules
Lecture 7: Firestore Security Rules Fundamentals – Rule Order and Access Types
Lecture 8: Checking if a User Is Authenticated Using Firestore Security Rules
Lecture 9: Implementing Firestore Schema Validation With Firestore Security Rules
Lecture 10: How to Implement a User White List Using Firestore Security Rules
Lecture 11: Implementing Role Based Access Control (RBAC) with Firestore Security Rules
Lecture 12: How to Write Security Rules For Collection Group Queries
Lecture 13: RBAC UI Implementation – The Roles Observable
Lecture 14: Showing certain UI Features only to Administrator Users
Lecture 15: Protecting Access to Admin Screens With the AngularFire Authentication Guard
Chapter 4: Serverless File Upload With Firebase Storage
Lecture 1: Introduction to Firebase Storage
Lecture 2: File Upload with Firebase Storage – Implementation Finished and Demo
Lecture 3: Implementing a File Upload Progress Indicator for Firebase Storage
Lecture 4: How to Create a Safe Download Url in Firebase Storage
Lecture 5: Firebase Storage Security Rules
Chapter 5: Firebase Cloud Functions In Depth
Lecture 1: Why do We Need Firebase Cloud Functions?
Lecture 2: How Do Firebase Cloud Functions Work?
Lecture 3: Firebase Cloud Functions – Hello World
Lecture 4: Firebase Cloud Functions – Introduction to Database Triggers
Lecture 5: How To Initialize a Firestore Connection From a Firebase Cloud Function
Lecture 6: Firebase Cloud Functions Add Document Trigger Implementation
Lecture 7: How To Minimize the Cold Startup Time Of Firebase Cloud Functions
Lecture 8: Firebase Cloud Functions – Update Triggers
Lecture 9: Firebase Cloud Functions – Delete Trigger
Lecture 10: How to Create an HTTP Endpoint with Firebase Cloud Functions
Lecture 11: Calling a Firebase Cloud Function REST Endpoint
Lecture 12: Implementing a Create User REST Endpoint with Firebase Cloud Functions
Lecture 13: Setting Up an Angular Http Interceptor
Lecture 14: Securing a Firebase Cloud Function Endpoint using Express Middleware
Lecture 15: Firebase Cloud Functions Secure REST Endpoint – Final Demo
Chapter 6: Production Deployment With Firebase Hosting
Lecture 1: Introduction to Firebase Service Accounts
Lecture 2: Setting The Claims of the Initial Root Admin Using a Node Script
Lecture 3: Production Deployment With Firebase Hosting
Lecture 4: Final Application Test In Production
Chapter 7: Conclusion
Lecture 1: Bonus Lecture (Updated August 2024)
Lecture 2: Conclusions and Key Takeaways
Instructors
-
Angular University
Best Selling Angular Courses | 200k+ students | 17 courses
Rating Distribution
- 1 stars: 29 votes
- 2 stars: 35 votes
- 3 stars: 129 votes
- 4 stars: 405 votes
- 5 stars: 854 votes
Frequently Asked Questions
How long do I have access to the course materials?
You can view and review the lecture materials indefinitely, like an on-demand channel.
Can I take my courses with me wherever I go?
Definitely! If you have an internet connection, courses on Udemy are available on any device at any time. If you don’t have an internet connection, some instructors also let their students download course lectures. That’s up to the instructor though, so make sure you get on their good side!
You may also like
- Top 10 Video Editing Courses to Learn in November 2024
- Top 10 Music Production Courses to Learn in November 2024
- Top 10 Animation Courses to Learn in November 2024
- Top 10 Digital Illustration Courses to Learn in November 2024
- Top 10 Renewable Energy Courses to Learn in November 2024
- Top 10 Sustainable Living Courses to Learn in November 2024
- Top 10 Ethical AI Courses to Learn in November 2024
- Top 10 Cybersecurity Fundamentals Courses to Learn in November 2024
- Top 10 Smart Home Technology Courses to Learn in November 2024
- Top 10 Holistic Health Courses to Learn in November 2024
- Top 10 Nutrition And Diet Planning Courses to Learn in November 2024
- Top 10 Yoga Instruction Courses to Learn in November 2024
- Top 10 Stress Management Courses to Learn in November 2024
- Top 10 Mindfulness Meditation Courses to Learn in November 2024
- Top 10 Life Coaching Courses to Learn in November 2024
- Top 10 Career Development Courses to Learn in November 2024
- Top 10 Relationship Building Courses to Learn in November 2024
- Top 10 Parenting Skills Courses to Learn in November 2024
- Top 10 Home Improvement Courses to Learn in November 2024
- Top 10 Gardening Courses to Learn in November 2024