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