firebase functionをローカル環境でテストする。
はじめに
firebase functionをローカル環境でテストする方法を説明します。
環境/前提
Node.jsで既にfunctionが作成されていること。
functionがonCall()で作成されていること。
手順
Firebase CLI をインストールする
npm install -g firebase-tools
ローカル環境のfunctionを利用するように設定する。
npm install -g firebase-tools
コード上のfunctionを利用している箇所に、下記の設定を追記します。
xx.ts
//追記箇所
firebase.functions().useFunctionsEmulator("http://localhost:[port番号]");
//function利用箇所
const function = firebase.functions().httpsCallable('[function名]');
function();
エミュレータを実行する
firebase emulators:start
以上の手順で、firebase functionをローカル環境でテストすることができます。
参考
Author And Source
この問題について(firebase functionをローカル環境でテストする。), 我々は、より多くの情報をここで見つけました https://qiita.com/Annoske/items/ba0fbf63e8e42e38a724著者帰属:元の著者の情報は、元の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 .