在Firebase项目中使用ES6“导入默认值,导出默认值”语法

时间:2020-06-23 20:33:49

标签: firebase

enter image description here我已成功使用firebase init命令将项目初始化到文件夹中,现在我具有所有必需的依赖项和文件。我的问题是如何在Firebase项目中使用ES6语法。 youtube上的视频很少,而且都使用const .... = require('...')语法。非常感谢。

1 个答案:

答案 0 :(得分:0)

要使用import和const等ES6功能,甚至使用await和async等ES7功能,请使用Typescript,将index.js重命名为index.ts。

示例index.ts:

import * as functions from 'firebase-functions';

export const helloWorld = functions.https.onRequest((req, resp) => {
 resp.send("Hello from Firebase!");
});