Skip to content

umd-coding-workshop/trello-json-to-csv

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

6 Commits
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

trello-json-to-csv

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.

Usage

This application is available using "GitHub Pages" at

https://umd-coding-workshop.github.io/trello-json-to-csv/

Development Quick Start

This application is just JavaScript and an "index.html" file.

If Node is installed, can test locally using:

$ npx serve

Then in a browser, go to http://localhost:3000

Trello "cards" array entries

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>",
        },
      ],
      ...
    }
]

Trello "lists" array entries

Only keys of interest for this project are shown:

"lists": [
  {
    "id": "<LIST_ID>",
    "name": "<LIST_NAME>",
    ...
  },
  ...
]

About

Convert Trello JSON export into a simple CSV file

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Contributors 3

  •  
  •  
  •