Questions tagged [firebase-tools]

The Firebase CLI provide a variety of tools for managing, viewing, and deploying Firebase projects, as well as a set of emulators for Firebase products. It's available via the npm module firebase-tools.

The Firebase Command Line (CLI) Tools can be used to:

  • Administer your Firebase account

  • Interact with Firebase Hosting, our product to host your static HTML, JS, CSS, images, etc.

  • Interact with the Firebase Database, to read and write JSON data and deploy security rules

  • Interact with Firebase Storage, to read and write files and deploy security rules

  • Deploy your code to Cloud Functions for Firebase

  • Emulate Cloud Functions, Realtime Database, and Cloud Firestore locally for use in development and testing.

See also:

Related tags

903 questions
-2
votes
1 answer

Can't run the updated code when I run cloud functions emulators on locally

I've updated one of my cloud functions and I want to test it on local before I publish it to live and I'm using firebase emulators:start to run the functions and it works without any error but my new code doesn't work. Ex; The old code:…
tpbafk
  • 501
  • 5
  • 26
-3
votes
1 answer

Can I preserve global state in Firebase Emulator cloud functions?

I'd like to run tests that call multiple Cloud Functions in the emulator that make use of a mocked out external service (getstream.io). That means the mock would have to stay around across function invocations. Is something like this possible? let…
-6
votes
1 answer

firebase "firebase deploy --only functions" error

I want to run firebase deploy --only functions command but it gives me many error what can i do?
1 2 3
60
61