Recall & Review
beginner
What is the Firebase CLI used for?
The Firebase CLI is a tool that helps you manage and deploy your Firebase projects from the command line, making it easier to work with Firebase services like hosting, functions, and databases.
Click to reveal answer
beginner
How do you install the Firebase CLI?
You install the Firebase CLI by running
npm install -g firebase-tools in your terminal. This installs the CLI globally so you can use it anywhere on your computer.Click to reveal answer
beginner
What command do you use to log in to Firebase using the CLI?
Use the command
firebase login to sign in to your Firebase account through the CLI. This connects your local setup to your Firebase projects.Click to reveal answer
beginner
What does the command
firebase init do?The
firebase init command sets up Firebase features in your project folder. It helps you choose which Firebase services to use and creates necessary config files.Click to reveal answer
beginner
Why is it important to run
firebase logout when done?Running
firebase logout signs you out of the Firebase CLI, which helps keep your account secure, especially on shared or public computers.Click to reveal answer
Which command installs the Firebase CLI globally?
✗ Incorrect
The correct command is
npm install -g firebase-tools to install the Firebase CLI globally.What is the first step after installing Firebase CLI to connect it to your account?
✗ Incorrect
You must run
firebase login to sign in and connect the CLI to your Firebase account.Which command helps you set up Firebase features in your project folder?
✗ Incorrect
firebase init initializes Firebase services in your project folder.Why should you run
firebase logout after finishing work?✗ Incorrect
Logging out helps keep your Firebase account secure, especially on shared or public machines.
Which of these is NOT a Firebase CLI command?
✗ Incorrect
firebase install is not a valid Firebase CLI command.Explain the steps to set up Firebase CLI from installation to initializing a project.
Think about commands you run in order to start using Firebase CLI.
You got /3 concepts.
Why is it important to log out from Firebase CLI after your work session?
Consider what happens if someone else uses your computer.
You got /3 concepts.