I'm working on the IBM Cloud (browser UI), created the hello world action and added these three lines:
const fs = require('fs');
const readline = require('readline');
const {google} = require('googleapis');
The third line throws an error
Initialization has failed due to: Error: Cannot find module 'googleapis'
I wonder how I can install Node.js modules like googleapis to avoid this error.