Skip to content

Instantly share code, notes, and snippets.

View JaeHwanWO's full-sized avatar

Yejin_Cho JaeHwanWO

View GitHub Profile
@abhishek0196
abhishek0196 / index.ts
Last active July 5, 2022 20:39
Copying data from Firebase Firestore to a Google Sheet in real time via Cloud Functions
import * as functions from 'firebase-functions'
import * as _ from 'lodash'
import { google } from 'googleapis'
const sheets = google.sheets('v4')
import * as admin from 'firebase-admin';
admin.initializeApp();
const spreadsheetId = '' // Your Sheets ID
@CodingDoug
CodingDoug / README.md
Last active August 3, 2023 16:41
Copying Data from a Google Sheet into Firebase Realtime Database in real time via Apps Script