{"id":48554919,"url":"https://github.com/kameronbrooks/datalys2-reporting","last_synced_at":"2026-04-08T10:02:54.002Z","repository":{"id":328416967,"uuid":"1111734924","full_name":"kameronbrooks/datalys2-reporting","owner":"kameronbrooks","description":"Datalys2 Reports allows you to create rich, interactive reports by simply defining a JSON configuration embedded in your HTML. It handles the layout, data visualization, and interactivity, so you don't need to write custom React code for every report.","archived":false,"fork":false,"pushed_at":"2026-02-11T19:46:23.000Z","size":667,"stargazers_count":0,"open_issues_count":1,"forks_count":0,"subscribers_count":0,"default_branch":"main","last_synced_at":"2026-02-12T03:49:45.369Z","etag":null,"topics":["data","data-visualization","html","react"],"latest_commit_sha":null,"homepage":"https://www.creation-wasteland.com/","language":"TypeScript","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/kameronbrooks.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,"dei":null,"publiccode":null,"codemeta":null,"zenodo":null,"notice":null,"maintainers":null,"copyright":null,"agents":null,"dco":null,"cla":null}},"created_at":"2025-12-07T14:39:06.000Z","updated_at":"2026-02-11T19:46:26.000Z","dependencies_parsed_at":null,"dependency_job_id":null,"html_url":"https://github.com/kameronbrooks/datalys2-reporting","commit_stats":null,"previous_names":["kameronbrooks/datalys2-reporting"],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/kameronbrooks/datalys2-reporting","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kameronbrooks%2Fdatalys2-reporting","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kameronbrooks%2Fdatalys2-reporting/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kameronbrooks%2Fdatalys2-reporting/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kameronbrooks%2Fdatalys2-reporting/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/kameronbrooks","download_url":"https://codeload.github.com/kameronbrooks/datalys2-reporting/tar.gz/refs/heads/main","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/kameronbrooks%2Fdatalys2-reporting/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":31549903,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-04-07T16:28:08.000Z","status":"online","status_checked_at":"2026-04-08T02:00:06.127Z","response_time":54,"last_error":null,"robots_txt_status":"success","robots_txt_updated_at":"2025-07-24T06:49:26.215Z","robots_txt_url":"https://github.com/robots.txt","online":true,"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":["data","data-visualization","html","react"],"created_at":"2026-04-08T10:02:53.844Z","updated_at":"2026-04-08T10:02:53.974Z","avatar_url":"https://github.com/kameronbrooks.png","language":"TypeScript","funding_links":[],"categories":[],"sub_categories":[],"readme":"# Datalys2 Reports\n\nA configuration-driven React framework for generating dynamic dashboards and reports.\n\n## Overview\n\nDatalys2 Reports allows you to create rich, interactive reports by simply defining a JSON configuration embedded in your HTML. It handles the layout, data visualization, and interactivity, so you don't need to write custom React code for every report.\n\n## Features\n\n*   **JSON Configuration**: Define your report structure, pages, and data in a simple JSON format.\n*   **Multiple Visuals**: Includes built-in components like KPIs, Pie Charts, Stacked Bar Charts, Clustered Bar Charts, and Cards.\n*   **Layout System**: Flexible row/column layout system.\n*   **Data Handling**: Supports multiple datasets in 'records' or 'table' formats.\n*   **Theming**: Customizable via CSS.\n\n## Usage\n\nYou can use the library directly from a CDN without installing anything.\n\n1.  **Include the assets**: Add the CSS and JavaScript from jsDelivr.\n2.  **Add the container**: Create a `\u003cdiv id=\"root\"\u003e\u003c/div\u003e` element.\n3.  **Define the data**: Add a `\u003cscript id=\"report-data\" type=\"application/json\"\u003e` tag containing your report configuration.\n\n```html\n\u003c!DOCTYPE html\u003e\n\u003chtml lang=\"en\"\u003e\n\u003chead\u003e\n    \u003cmeta charset=\"UTF-8\"\u003e\n    \u003ctitle\u003eMy Report\u003c/title\u003e\n    \u003c!-- Include styles from CDN --\u003e\n    \u003clink rel=\"stylesheet\" href=\"https://cdn.jsdelivr.net/gh/kameronbrooks/datalys2-reporting@latest/dist/dl2-style.css\"\u003e\n\u003c/head\u003e\n\u003cbody\u003e\n    \u003cdiv id=\"root\"\u003e\u003c/div\u003e\n\n    \u003cscript id=\"report-data\" type=\"application/json\"\u003e\n    {\n        \"pages\": [ ... ],\n        \"datasets\": { ... }\n    }\n    \u003c/script\u003e\n\n    \u003c!-- Include script from CDN --\u003e\n    \u003cscript src=\"https://cdn.jsdelivr.net/gh/kameronbrooks/datalys2-reporting@latest/dist/datalys2-reports.min.js\"\u003e\u003c/script\u003e\n\u003c/body\u003e\n\u003c/html\u003e\n```\n\nFor detailed documentation on the configuration schema and available components, please refer to [DOCUMENTATION.md](./DOCUMENTATION.md).\n\n---\n\n## Development\n\nThis section is only if you are building the package yourself!\n\n### Prerequisites\n\n*   Node.js\n*   npm\n\n### Setup\n\n```bash\n# Install dependencies\nnpm install\n```\n\n### Build\n\nTo build the production bundle:\n\n```bash\nnpm run build\n```\n\n### Watch Mode\n\nTo watch for changes during development:\n\n```bash\nnpm run dev\n```\n\n## License\n\nISC\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkameronbrooks%2Fdatalys2-reporting","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fkameronbrooks%2Fdatalys2-reporting","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fkameronbrooks%2Fdatalys2-reporting/lists"}