Download Node.js from the official site: https://nodejs.org/en/download
Click Windows Installer (.msi) and follow instructions.
Firebase CLI CLI = Command Line Interface. It's a tool that lets you manage Firebase projects using commands instead of UI. installation command:
npm install -g firebase-tools
Explanation: The -g means global install, allowing you to run Firebase commands from any folder.
Run command:
firebase login
You may be asked about Gemini (optional). Press y or n.
A browser window opens for Google login. After login, CMD shows:
Success! Logged in as your-email@gmail.com
Go to Firebase Console: https://console.firebase.google.com
Create a new Flutter project:
flutter create your_project_name
Navigate to your project folder:
cd your_project_name
Install Firebase core package:
flutter pub add firebase_core
Explanation: This downloads the firebase_core package and adds it to your Flutter project, enabling your app to connect to Firebase.
Run globally:
dart pub global activate flutterfire_cli
It will give a path like:
C:\Users\user\AppData\Local\Pub\Cache\bin
Add this path to Environment Variables → Path so flutterfire works anywhere.
Run:
flutterfire configure
Or specify project directly:
flutterfire configure --project your-project-name
Select the platforms (Android, iOS, Web, macOS) and press Enter. This generates lib/firebase_options.dart.
Test your Firebase connection with this code:
import 'package:flutter/material.dart';
import 'package:firebase_core/firebase_core.dart';
import 'firebase_options.dart';
void main() async {
WidgetsFlutterBinding.ensureInitialized();
await Firebase.initializeApp(
options: DefaultFirebaseOptions.currentPlatform,
);
runApp(MyApp());
}
class MyApp extends StatelessWidget {
@override
Widget build(BuildContext context) {
return MaterialApp(
home: Scaffold(
appBar: AppBar(title: Text('Firebase Demo')),
body: Center(child: Text('✅ Firebase Connected Successfully!', style: TextStyle(fontSize: 18))),
),
);
}
}