Cloud Functions for Firebaseで関数をシンプルにファイルごとに分割する
Cloud Functions for Firebase にて、関数を定義する際にデフォルトのfunctions/index.js
以下に関数を書いていくとすぐにファイルが肥大化してしまいます。
const functions = require("firebase-functions");
// Create and Deploy Your First Cloud Functions
// https://firebase.google.com/docs/functions/write-firebase-functions
exports.helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});
そこで、ある程度の規模になりそうな場合は以下のようにファイルを分割した上で、関数をエクスポートして利用すると見通しが良くなるかと思います。
以下はその例です(TypeScript です)。
import * as admin from "firebase-admin";
admin.initializeApp();
export * from "./hello";
import * as functions from "firebase-functions";
export const helloWorld = functions.https.onRequest((request, response) => {
response.send("Hello from Firebase!");
});
export * from "./hello";
とすることで、hello.ts
内でexport
した関数はすべて利用できるようになります。
ぜひ参考にしてみてください😄
〜宣伝〜
こんな感じで Firebase を使って、AnyMake というサービスを個人で開発しています。
気になる方はぜひチェックしてみてください👍
Author And Source
この問題について(Cloud Functions for Firebaseで関数をシンプルにファイルごとに分割する), 我々は、より多くの情報をここで見つけました https://qiita.com/y-temp4/items/d7bd56781c9b76f3f47e著者帰属:元の著者の情報は、元のURLに含まれています。著作権は原作者に属する。
Content is automatically searched and collected through network algorithms . If there is a violation . Please contact us . We will adjust (correct author information ,or delete content ) as soon as possible .