So Firebase offers something called "functions", which is essentially a nodejs server that has all of the Firebase stuff preconfigured and has all the scaling automatically handled. I'm wondering, is there a way to call a function inside of the "functions" index.js file from an angular 2 app?
I need to utilize the firebase-admin npm module to check if a user's email exists and then grab the uid for that user, if it does.
According to this link, I can setup my index.js file such as:
const functions = require('firebase-functions');
const admin = require('firebase-admin');
admin.initializeApp(functions.config().firebase);
// I'm actually not sure if this is how you do this part:
exports.getUserByEmail = (email) => {
return admin.auth().getUserByEmail(email);
}
Is there a way I can call getUserByEmail()
inside of a component in my Angular 2 app?
Thanks in advance!