无法在 Node.js 中导入 firebase-admin

Can't import firebase-admin in Node.js

我有一个 Node (14.3.0) 服务器,我通过添加以下行在 package.json 中启用了 ES6 模块导入:

package.json:

"type": "module",

根据此处的 firebase-admin 文档:https://firebase.google.com/docs/admin/setup/#node.js

If you are using ES2015, you can import the module instead:

import * as admin from 'firebase-admin';

当我使用 import * as admin from 'firebase-admin'; 时,出现以下错误:

credential: admin.credential.applicationDefault(),
TypeError: Cannot read property 'applicationDefault' of undefined

似乎 firebase-admin 没有正确导入 - 我尝试删除 package.json 中的 "type": "module" 行并使用 require:

导入 firebase-admin

const admin = require(firebase-admin)

它有效,所以我的问题是 - 是否可以使用 ES6 在 Node 中导入 firebase-admin,如果可以,怎么做?

以下是完整的、最小的复制品:

server.js

import express from 'express';
import * as admin from 'firebase-admin';

const app = express();
const PORT = process.env.PORT || 5000;

app.use(express.json());

admin.initializeApp({
  credential: admin.credential.applicationDefault(),
  databaseURL: process.env.FIREBASE_DB_URL,
});

app.listen(PORT, () => console.log(`listening on ${PORT}`));

export default app;

package.json

{
  "name": "server",
  "version": "1.0.0",
  "main": "index.js",
  "license": "MIT",
  "dependencies": {
    "express": "^4.17.1",
    "firebase-admin": "^9.2.0",
  },
  "type": "module",
  "scripts": {
    "dev": "node server.js"
  },
  "engines": {
    "node": "14.x"
  }
}

注意:在 运行 服务器之前,请确保在您的 shell (Mac/Linux):

export GOOGLE_APPLICATION_CREDENTIALS="/your/path/to/service-account-file.json"

这样使用:

import * as admin from 'firebase-admin';
const {credential} = admin;

这样你就可以使用这些功能了。

我在 firebase-admin-node github 上问过这个问题。显然,他们还没有用 Node 14 测试导入。答案很简单:

import admin from 'firebase-admin'

你可以在这里看到解释:

https://github.com/firebase/firebase-admin-node/issues/1061#event-3868300300