{"id":19243194,"url":"https://github.com/ladyrick/d3-demo","last_synced_at":"2026-02-03T12:05:54.184Z","repository":{"id":80943033,"uuid":"89730210","full_name":"ladyrick/d3-demo","owner":"ladyrick","description":null,"archived":false,"fork":false,"pushed_at":"2018-05-12T07:12:43.000Z","size":289,"stargazers_count":0,"open_issues_count":0,"forks_count":0,"subscribers_count":1,"default_branch":"master","last_synced_at":"2025-07-02T15:46:44.095Z","etag":null,"topics":[],"latest_commit_sha":null,"homepage":"https://liuhong12th.github.io/d3-demo/","language":"HTML","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"gpl-2.0","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/ladyrick.png","metadata":{"files":{"readme":"README.md","changelog":null,"contributing":null,"funding":null,"license":"LICENSE","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}},"created_at":"2017-04-28T17:41:38.000Z","updated_at":"2018-05-12T07:12:44.000Z","dependencies_parsed_at":"2023-07-04T16:45:40.294Z","dependency_job_id":null,"html_url":"https://github.com/ladyrick/d3-demo","commit_stats":null,"previous_names":[],"tags_count":0,"template":false,"template_full_name":null,"purl":"pkg:github/ladyrick/d3-demo","repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladyrick%2Fd3-demo","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladyrick%2Fd3-demo/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladyrick%2Fd3-demo/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladyrick%2Fd3-demo/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/ladyrick","download_url":"https://codeload.github.com/ladyrick/d3-demo/tar.gz/refs/heads/master","sbom_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/ladyrick%2Fd3-demo/sbom","scorecard":null,"host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":286080680,"owners_count":29045451,"icon_url":"https://github.com/github.png","version":null,"created_at":"2022-05-30T11:31:42.601Z","updated_at":"2026-02-03T10:09:22.136Z","status":"ssl_error","status_checked_at":"2026-02-03T10:09:16.814Z","response_time":96,"last_error":"SSL_connect returned=1 errno=0 peeraddr=140.82.121.6:443 state=error: 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":[],"created_at":"2024-11-09T17:16:57.441Z","updated_at":"2026-02-03T12:05:54.156Z","avatar_url":"https://github.com/ladyrick.png","language":"HTML","funding_links":[],"categories":[],"sub_categories":[],"readme":"# D3: Data-Driven Documents\n\n\u003ca href=\"https://d3js.org\"\u003e\u003cimg src=\"https://d3js.org/logo.svg\" align=\"left\" hspace=\"10\" vspace=\"6\"\u003e\u003c/a\u003e\n\n**D3** (or **D3.js**) is a JavaScript library for visualizing data using web standards. D3 helps you bring data to life using SVG, Canvas and HTML. D3 combines powerful visualization and interaction techniques with a data-driven approach to DOM manipulation, giving you the full capabilities of modern browsers and the freedom to design the right visual interface for your data.\n\n## Resources\n\n* [API Reference](https://github.com/d3/d3/blob/master/API.md)\n* [Release Notes](https://github.com/d3/d3/releases)\n* [Gallery](https://github.com/d3/d3/wiki/Gallery)\n* [Examples](https://bl.ocks.org/mbostock)\n* [Wiki](https://github.com/d3/d3/wiki)\n\n## Installing\n\nIf you use npm, `npm install d3`. Otherwise, download the [latest release](https://github.com/d3/d3/releases/latest). The released bundle supports anonymous AMD, CommonJS, and vanilla environments. You can load directly from [d3js.org](https://d3js.org), [CDNJS](https://cdnjs.com/libraries/d3), or [unpkg](https://unpkg.com/d3/). For example:\n\n```html\n\u003cscript src=\"https://d3js.org/d3.v4.js\"\u003e\u003c/script\u003e\n```\n\nFor the minified version:\n\n```html\n\u003cscript src=\"https://d3js.org/d3.v4.min.js\"\u003e\u003c/script\u003e\n```\n\nYou can also use the standalone D3 microlibraries. For example, [d3-selection](https://github.com/d3/d3-selection):\n\n```html\n\u003cscript src=\"https://d3js.org/d3-selection.v1.js\"\u003e\u003c/script\u003e\n```\n\nD3 is written using [ES2015 modules](http://www.2ality.com/2014/09/es6-modules-final.html). Create a [custom bundle using Rollup](https://bl.ocks.org/mbostock/bb09af4c39c79cffcde4), Webpack, or your preferred bundler. To import D3 into an ES2015 application, either import specific symbols from specific D3 modules:\n\n```js\nimport {scaleLinear} from \"d3-scale\";\n```\n\nOr import everything into a namespace (here, `d3`):\n\n```js\nimport * as d3 from \"d3\";\n```\n\nIn Node:\n\n```js\nvar d3 = require(\"d3\");\n```\n\nYou can also require individual modules and combine them into a `d3` object using [Object.assign](https://developer.mozilla.org/en-US/docs/Web/JavaScript/Reference/Global_Objects/Object/assign):\n\n```js\nvar d3 = Object.assign({}, require(\"d3-format\"), require(\"d3-geo\"), require(\"d3-geo-projection\"));\n```\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladyrick%2Fd3-demo","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fladyrick%2Fd3-demo","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fladyrick%2Fd3-demo/lists"}