
An ultra-light JSON to CSV converter tool that helps you export JSON data into a CSV file.
See Also:
How to use it:
1. Install & download.
# Yarn $ yarn add json2csv-export # NPM $ npm i json2csv-export
2. Import the exportCsv module.
import { exportCsv } from "json2csv-export";3. Download your JSON data as a CSV file.
exportCsv({
{
// header is optional
},
[
{
// json data here
}
],
filename: 'cssscript' // file name
});






