Export from firebase

Hi all,

I begin with ionic, and I would like to do an export from a angularfire list from Firebase, to a csv file. I tried with some external modules (like Angular2Csv) but it doesn’t do what I need.

Do you have an idea to do this?

Thanks a lot for your answers,
Ludo

Do you want to do that on the device?

Then divide and conquer:

  1. Get the data you want into an object you can output via console.log
  2. Find a way to write this object to a csv file.

No I would like to send it by email then.

Thank you !

Ok, then you will probably have to add a step.

  1. Find a way to send an email with this newly created CSV file.