Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

Firebase serve --only functions VS local emulator to run cloud functions locally?

Up until now I've been doing the following to use and test my functions locally during development:

I leave this running in one terminal:

firebase serve --only functions

And I add this on my client code when I'm initializing my Firebase app:

const config = {   apiKey: process.env.FIREBASE_APP_API_KEY,   authDomain: process.env.FIREBASE_APP_AUTH_DOMAIN,   databaseURL: process.env.FIREBASE_APP_DATABASE_URL,   projectId: process.env.FIREBASE_APP_PROJECT_ID,   storageBucket: process.env.FIREBASE_APP_STORAGE_BUCKET,   messagingSenderId: process.env.FIREBASE_APP_MESSAGING_SENDER_ID };  firebase.initializeApp(config);  // THIS IS THE DEFAULT HOST AND PORT USED BY 'firebase serve command' firebase.functions().useFunctionsEmulator('http://localhost:5000'); 

I have tested only HTTP callable functions and so far this has been working fine.


But in the docs, I see this:

https://firebase.google.com/docs/functions/local-emulator

Run functions locally The Firebase CLI includes a Cloud Functions emulator which can emulate the following function types:

  • HTTPS functions
  • Callable functions
  • Cloud Firestore functions

You can run functions locally to test them before deploying to production.

1. Install the Firebase CLI - Link

2. Set up admin credentials (optional) - Link

$ set GOOGLE_APPLICATION_CREDENTIALS=path\to\key.json $ firebase emulators:start 

After completing these steps, your functions tests can access Firebase and Google APIs using the Admin SDK. For example, when testing an Authentication trigger, the emulated function could call admin.auth().getUserByEmail(email).

QUESTION

What is the difference between the two methods of running functions locally?

like image 224
cbdeveloper Avatar asked Jun 16 '19 12:06

cbdeveloper


People also ask

Can Firebase be used locally?

The Firebase Local Emulator Suite is a set of advanced tools for developers looking to build and test apps locally using Cloud Firestore, Realtime Database, Cloud Storage, Authentication, Cloud Functions, Pub/Sub, Firebase Hosting and Firebase Extensions.

What does Firebase deploy -- only functions do?

Running firebase deploy --only functions deletes the existing functions before creating new ones.


1 Answers

firebase emulators:start is part of the new Firebase emulator suite, which is designed to allow several emulated products work together. It's completely different than firebase serve --only functions, which is based on the @google-cloud/functions-emulator npm package, which is not actively maintained (click through and you will see that it's deprecated). It's recommended that you start moving to the new emulator suite and away from firebase serve.

like image 110
Doug Stevenson Avatar answered Oct 05 '22 14:10

Doug Stevenson