我在AWS lambda中只安装了"firebase-auth"
"firebase-app"
个模块,因为.zip文件必须小于10mb。
这是我在AWS lambda中的代码。
var firebase = require('firebase');
exports.handler = (event, context, callback) => {
context.callbackWaitsForEmptyEventLoop = false;
var config = {
apiKey: "lnlnnl",
authDomain: "lfirjlkje.baseapp.com",
databaseURL: "https://kjhjkh.firebaseio.com",
projectId: "jhkhjh-88eaf",
storageBucket: "hj.hjappspot.com",
messagingSenderId: "977997"
};
if(firebase.apps.length == 0) {
firebase.initializeApp(config);
}
};
我有firebase.apps
未定义且firebase.initializeApp
未定义。
任何想法有什么不对?