{"id":15923290,"url":"https://github.com/philhawksworth/netlify-plugin-trello-lists","last_synced_at":"2026-01-20T07:33:13.763Z","repository":{"id":40711906,"uuid":"284026393","full_name":"philhawksworth/netlify-plugin-trello-lists","owner":"philhawksworth","description":"A plugin to fetch the JSON data of a public Trello board, and stash the data for each list in a JSON file before your build runs making the data available to your static site generator at build time.","archived":false,"fork":false,"pushed_at":"2022-06-25T14:41:18.000Z","size":10,"stargazers_count":2,"open_issues_count":3,"forks_count":0,"subscribers_count":1,"default_branch":"main","last_synced_at":"2025-04-08T08:53:25.174Z","etag":null,"topics":["api","data","eleventy","netlify","plugin","trello"],"latest_commit_sha":null,"homepage":"https://demo-netlify-plugin-trello-lists.netlify.app/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":null,"status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/philhawksworth.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":null,"code_of_conduct":null,"threat_model":null,"audit":null,"citation":null,"codeowners":null,"security":null,"support":null}},"created_at":"2020-07-31T11:58:45.000Z","updated_at":"2020-09-14T21:14:31.000Z","dependencies_parsed_at":"2022-07-29T04:08:41.496Z","dependency_job_id":null,"html_url":"https://github.com/philhawksworth/netlify-plugin-trello-lists","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/philhawksworth/netlify-plugin-trello-lists","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philhawksworth%2Fnetlify-plugin-trello-lists","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philhawksworth%2Fnetlify-plugin-trello-lists/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philhawksworth%2Fnetlify-plugin-trello-lists/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philhawksworth%2Fnetlify-plugin-trello-lists/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/philhawksworth","download_url":"https://codeload.github.com/philhawksworth/netlify-plugin-trello-lists/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/philhawksworth%2Fnetlify-plugin-trello-lists/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":28598159,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-01-20T02:08:49.799Z","status":"ssl_error","status_checked_at":"2026-01-20T02:08:44.148Z","response_time":117,"last_error":"SSL_read: unexpected eof while reading","robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":false,"can_crawl_api":true,"host_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub","repositories_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories","repository_names_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repository_names","owners_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners"}},"keywords":["api","data","eleventy","netlify","plugin","trello"],"created_at":"2024-10-06T21:00:45.847Z","updated_at":"2026-01-20T07:33:13.732Z","avatar_url":"https://github.com/philhawksworth.png","language":"JavaScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Netlify Plugin - Trello Lists\n\nThis [plugin](https://www.netlify.com/build/plugins-beta?utm_source=github\u0026utm_medium=plugin-trellolists-pnh\u0026utm_campaign=devex) adds the ability to fetch the JSON data of a public Trello board, and stash the data for each list in a JSON file before your build runs making the data available to your static site generator at build time.\n\n## Overview\n\nThis plugin uses anonymous access to the Trello API based on the public URL of the desired board.\n\nYou can also configure this plugin to present the gathered data in the appropriate location, so your chosen [static site generator](https://www.netlify.com/blog/2020/04/14/what-is-a-static-site-generator-and-3-ways-to-find-the-best-one/?utm_source=github\u0026utm_medium=plugin-trellolists-pnh\u0026utm_campaign=devex) can leverage it during the build.\n\n## A demo to explore and to clone\n\n- Demo site: https://demo-plugin-trello-lists.netlify.app/\n- Demo repo: https://github.com/philhawksworth/demo-netlify-plugin-trello-lists\n\n## Installation\n\nTo include this plugin in your site deployment:\n\n### 1. Add the plugin as a dependency\n\n```bash\n\n# Add the plugin as a dependency of your build\nnpm i --s netlify-plugin-trello-lists\n\n```\n\n### 2. Add the plugin and its options to your netlify.toml\n\nThis plugin will fetch Trello data and stash the data prior to the execution of the `build` command you have specified in your Netlify configuration. You can choose which board you want get the data from. Each list will result in an object named in PascalCase corresponding to the list name.\n\n\n```toml\n# Config for the Netlify Build Plugin: netlify-plugin-trello-lists\n[[plugins]]\n  package = \"netlify-plugin-trello-lists\"\n\n  [plugins.inputs]\n\n    # The URL of a publicly visible Trello board\n    trelloBoardUrl = \"https://trello.com/b/twPXW2W1/netlify-plugin-trello-list-info\"\n\n    # Location of the JSON data file to be generated\n    dataFilePath = \"src/_data/trello.json\"\n\n    # If the plugin fails, should it do so quietly or cancel the build?\n    # \"failBuild\" | \"failPlugin\"\n    fail = \"failBuild\"\n\n\n```\n\n### 3. Configure your Trello board\n\nThe Trello board that you choose to use as the source of content must be publicly visible. Future iterations of this plugin _may_ add Trello authentication for private boards.\n\nEach list in the board will yield an object in the JSON file keyed with the name of the list in PascalCase.\n\nUse labels in Trello to identify which cards should be included in the data set you retrieve. Cards labelled `live` will appear in the data set no matter which branch your build ruins in. You can use different labels to allocate cards for inclusion only in builds on corresponding branches. This will allow you to have a notion of \"staged\" and \"live\" cards in your content.\n\nFor more explanation, see [this article on CSS-Tricks](https://css-tricks.com/using-trello-as-a-super-simple-cms/) which is the inspiration for this plugin.\n\n\n## Using in local development\n\nTo execute this plugin in your local environment and generate a local data set, install the Netlify CLI which will allow you to emulate the Netlify Build process locally (along with some other hand Netlify utilities)\n\n```bash\n\n# install Netlify CLI globally\nnpm i -g netlify-cli\n\n# create a new Netlify project OR link to an existing one\nntl init\n# OR\nntl link\n\n# run the Netlify build in your project repo\nntl build\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilhawksworth%2Fnetlify-plugin-trello-lists","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fphilhawksworth%2Fnetlify-plugin-trello-lists","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fphilhawksworth%2Fnetlify-plugin-trello-lists/lists"}