その4から続き
15. 必要なモジュールをnpmでインストールします。
obnizのモジュールをインストールします。
$ npm install obniz
express(WEBサーバ)のモジュールをインストールします。
$ npm install express
date-utilsのモジュールをインストールします。
$ npm install date-utils
BigQuery API クライアント ライブラリをインストールします。
$ npm install @google-cloud/bigquery
16. ここまでで、package.jsonは下記のとおりになります。
{
"name": "temp",
"version": "1.0.0",
"description": "get temperature",
"main": "index.js",
"scripts": {
"start": "node index.js",
"test": "echo \"Error: no test specified\" && exit 1"
},
"author": "Soarstech",
"license": "ISC",
"private": true,
"dependencies": {
"@google-cloud/bigquery": "^5.9.2",
"express": "^4.17.1",
"obniz": "^3.17.0"
}
}
その6へ続く