Frontend Engineer
Content creator at
Google Firebase provides a powerful, fully managed BaaS that simplifies app development.
It lets developers focus on building features without worrying about infrastructure.
# Intall dependencies
npm install firebase
npm install -g firebase-tools
# Auth
firebase login
# Start project scaffolding
firebase init
# You can also add services
# in particular
firebase init hosting// Use the credentials form Firebase console
import { initializeApp } from "firebase/app";
const firebaseConfig = {
apiKey: "your-api-key",
authDomain: "your-auth-domain",
projectId: "your-project-id",
storageBucket: "your-storage-bucket",
messagingSenderId: "your-messaging-sender-id",
appId: "your-app-id",
};
const app = initializeApp(firebaseConfig);