{"id":13393008,"url":"https://github.com/feroult/burnify","last_synced_at":"2025-04-14T18:23:53.723Z","repository":{"id":138799089,"uuid":"41549293","full_name":"feroult/burnify","owner":"feroult","description":"Interactive Product Burn-Down Chart","archived":false,"fork":false,"pushed_at":"2022-01-01T19:44:37.000Z","size":279,"stargazers_count":17,"open_issues_count":4,"forks_count":3,"subscribers_count":2,"default_branch":"master","last_synced_at":"2024-04-16T09:21:33.852Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":null,"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/feroult.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,"governance":null,"roadmap":null,"authors":null}},"created_at":"2015-08-28T13:38:58.000Z","updated_at":"2022-01-01T19:44:40.000Z","dependencies_parsed_at":"2024-01-13T17:11:04.109Z","dependency_job_id":"1ca3d453-4213-45f4-ba6e-c86c968f2b08","html_url":"https://github.com/feroult/burnify","commit_stats":null,"previous_names":[],"tags_count":4,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feroult%2Fburnify","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feroult%2Fburnify/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feroult%2Fburnify/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/feroult%2Fburnify/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/feroult","download_url":"https://codeload.github.com/feroult/burnify/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":248934252,"owners_count":21185625,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2022-07-04T15:15:14.044Z","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":[],"created_at":"2024-07-30T17:00:40.958Z","updated_at":"2025-04-14T18:23:53.691Z","avatar_url":"https://github.com/feroult.png","language":"JavaScript","funding_links":[],"categories":["Uncategorized"],"sub_categories":["Uncategorized"],"readme":"# Burnify\nInteractive Product Burn-Down Chart\n\n## Introduction\n\n**Burnify** is a d3 plugin that creates a highly interactive product burn-down chart to be embedded into any web application.\n\n![](https://github.com/feroult/burnify/blob/master/sample.png)\n\nOpen the [live demo](https://rawcdn.githack.com/feroult/burnify/burnify-0.4/test/products.html).\n\n\n## How it Works\n\n### Import plugin:\n```html\n\u003cscript src=\"https://cdnjs.cloudflare.com/ajax/libs/d3/3.5.6/d3.min.js\" charset=\"utf-8\"\u003e\u003c/script\u003e\n\n\u003clink href=\"https://cdn.rawgit.com/feroult/burnify/burnify-0.3/src/jquery.burnify.css\" rel=\"stylesheet\" type=\"text/css\"\u003e\n\u003cscript src=\"https://cdn.rawgit.com/feroult/burnify/burnify-0.3/src/jquery.burnify.js\"\u003e\u003c/script\u003e\n\n(...)\n\n\u003cdiv id=\"product-chart\" /\u003e\n```\n\n### Burnify it:\n```javascript\nb1 = new Burnify(\"#product1\", products[0], 450, 250);\nb1.onSprintBarClick = function(sprintNumber, sprint) { alert('Sprint ' + sprintNumber + ' (done: '+ sprint.done + ')'); };\nb1.onFullScopeAreaClick = function(p) { alert('Project ' + p.name + ' full scope area!'); };\nb1.onDoneScopeAreaClick = function(p) { alert('Project ' + p.name + ' done scope area!'); };\nb1.onOutScopeAreaClick = function(p) { alert('Project ' + p.name + ' out scope area!'); };\nb1.draw();\n```\n\n### Sample json structure:\n```javascript\n{\n    name: 'Burnify',\n    points: 120,\n    lastSprint: 13,\n    mvpSprint: 10,\n    sprints: [{\n            done: 10\n        }, {\n            done: 10\n        }, {\n            done: 10\n        }, {\n            done: 6,\n            added: 52\n        }, {\n            done: 8,\n            added: 12\n        }, {\n            done: 8,\n            added: 2,\n            removed: 20\n        }, {\n            done: 4,\n        }, {\n            done: 6,\n            added: 2\n        }\n    ]\n}\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferoult%2Fburnify","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fferoult%2Fburnify","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fferoult%2Fburnify/lists"}