Export json from Firestore

后端 未结 9 2039
时光取名叫无心
时光取名叫无心 2020-12-14 05:55

As we can download json file at Firebase RTDB console, are there any way to export json file of Firestore collection/document data?

One of my main objectives is to c

9条回答
  •  离开以前
    2020-12-14 06:48

    Google made it harder than it needed to be, so the community found a workaround. If you have npm installed, you can do this:

    Export

    npx -p node-firestore-import-export firestore-export -a credentials.json -b backup.json
    

    Import

    npx -p node-firestore-import-export firestore-import -a credentials.json -b backup.json
    

    Source

提交回复
热议问题