Convert Trello JSON export into a simple CSV file.
The JSON file is converted to a CSV file for download by running JavaScript locally in the browser. The JSON file is not transferred to a server.
This application is available using "GitHub Pages" at
https://umd-coding-workshop.github.io/trello-json-to-csv/
This application is just JavaScript and an "index.html" file.
If Node is installed, can test locally using:
$ npx serveThen in a browser, go to http://localhost:3000
Only keys of interest for this project are shown:
"cards": [
{
"id": "<CARD_ID>",
"desc": "<Concatenated string of multiple fields>",
"idList": "<LIST_ID>",
"labels": [
{
"id": "<LABEL_ID>",
"name": "<LABEL_NAME>",
},
],
...
}
]Only keys of interest for this project are shown:
"lists": [
{
"id": "<LIST_ID>",
"name": "<LIST_NAME>",
...
},
...
]