| ページ一覧 | ブログ | twitter |  書式 | 書式(表) |

MyMemoWiki

「Cloud Functions」の版間の差分

提供: MyMemoWiki
ナビゲーションに移動 検索に移動
17行目: 17行目:
 
===[[Express]]と統合===
 
===[[Express]]と統合===
 
*https://taroosg.io/cloud-functions-express
 
*https://taroosg.io/cloud-functions-express
 +
<pre>
 +
$ npm install --save express
 +
</pre>

2020年10月30日 (金) 05:26時点における版

| Google Cloud Platform | Firebase |

Cloud Functions

ローカル実行

  • Firebase エミュレータを呼び出す

**package.json で定義された、firebase emulators:start を実行

$ npm install -g firebase-tools
$ cd functions
$ npm run serve

Expressと統合

$ npm install --save express