Import CSV files into Firebase: Step-by-step guide
P粉8912379122024-01-21 15:21:20
0
1
617
I found that we can import json files into firebase.
I'm wondering if there is a way to import a CSV file (my file probably contains about 50K or more records with about 10 columns).
Does it make sense to have such a file in firebase?
I can't answer whether it makes sense to have such a file in Firebase, you should answer that question.
I also had to upload the CSV file to Firebase and eventually convert the CSV to JSON and use firebase-import to add my Json into Firebase.
There are many CSV to JSON converters (even online converters). You can choose the one you like best (I personally use node-csvtojson).