{"id":13555356,"url":"https://github.com/mauriciopoppe/greuler","last_synced_at":"2025-12-12T04:22:38.739Z","repository":{"id":35042443,"uuid":"39165090","full_name":"mauriciopoppe/greuler","owner":"mauriciopoppe","description":"Graph theory visualizations","archived":false,"fork":false,"pushed_at":"2025-04-29T01:57:52.000Z","size":5815,"stargazers_count":649,"open_issues_count":1,"forks_count":27,"subscribers_count":19,"default_branch":"main","last_synced_at":"2025-05-10T05:59:17.139Z","etag":null,"topics":["edges","graph","graph-theory","graph-traversal","network","nodes","vertices"],"latest_commit_sha":null,"homepage":"http://mauriciopoppe.github.io/greuler/","language":"JavaScript","has_issues":true,"has_wiki":null,"has_pages":null,"mirror_url":null,"source_name":null,"license":"mit","status":null,"scm":"git","pull_requests_enabled":true,"icon_url":"https://github.com/mauriciopoppe.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":"2015-07-15T22:55:47.000Z","updated_at":"2025-01-18T12:44:48.000Z","dependencies_parsed_at":"2024-11-21T06:45:59.656Z","dependency_job_id":null,"html_url":"https://github.com/mauriciopoppe/greuler","commit_stats":{"total_commits":154,"total_committers":5,"mean_commits":30.8,"dds":0.6428571428571428,"last_synced_commit":"0f2a2c665d0eaaeb670a82b04c13350b6c56e765"},"previous_names":["maurizzzio/greuler"],"tags_count":19,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauriciopoppe%2Fgreuler","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauriciopoppe%2Fgreuler/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauriciopoppe%2Fgreuler/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/mauriciopoppe%2Fgreuler/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/mauriciopoppe","download_url":"https://codeload.github.com/mauriciopoppe/greuler/tar.gz/refs/heads/main","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254509476,"owners_count":22082891,"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":["edges","graph","graph-theory","graph-traversal","network","nodes","vertices"],"created_at":"2024-08-01T12:03:10.092Z","updated_at":"2025-12-12T04:22:38.695Z","avatar_url":"https://github.com/mauriciopoppe.png","language":"JavaScript","funding_links":[],"categories":["JavaScript","others"],"sub_categories":[],"readme":"\u003cp align=\"center\"\u003e\n  \u003ca href=\"http://mauriciopoppe.github.io/greuler/\"\u003e\n    \u003cimg src=\"./public/src/banner.svg\" alt=\"greuler logo\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n\u003cp align=\"center\"\u003e\n  \u003ca href=\"https://npmjs.org/package/greuler\"\u003e\n    \u003cimg src=\"https://img.shields.io/npm/v/greuler.svg?style=flat\" alt=\"NPM\"\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/mauriciopoppe/greuler/actions/workflows/main.yml\"\u003e\n    \u003cimg src=\"https://github.com/mauriciopoppe/greuler/actions/workflows/main.yml/badge.svg\" /\u003e\n  \u003c/a\u003e\n  \u003ca href=\"https://github.com/feross/standard\"\u003e\n    \u003cimg src=\"https://img.shields.io/badge/code%20style-standard-blue\" alt=\"js-standard-style\"\u003e\n  \u003c/a\u003e\n\u003c/p\u003e\n\n---\n\n\u003cb\u003egreuler\u003c/b\u003e is graph theory visualization tool powered by \u003ca href=\"http://d3js.org/\"\u003ed3\u003c/a\u003e\nand on top of \u003ca href=\"http://marvl.infotech.monash.edu/webcola/\"\u003eWebCola\u003c/a\u003e\nwhich allows the creation and manipulation of graphs with a simple API.\n\n\u003cp align=\"center\"\u003e\n  \u003cimg src=\"https://github.com/mauriciopoppe/greuler/assets/1616682/813d8fa8-9f98-4493-86af-aa0f6dd5d945\" alt=\"greuler\" width=\"500\"\u003e\n\u003c/p\u003e\n\n## Installation\n\n```sh\nnpm install greuler\n```\n\nor\n\n```html\n\u003cscript src=\"https://unpkg.com/greuler\"\u003e\u003c/script\u003e\n```\n\n## Usage\n\n```js\nimport greuler from 'greuler'\ngreuler({\n  nodes: [\n    { id: 0 },\n    { id: 1 },\n    { id: 2 },\n    { id: 3 },\n    { id: 4 },\n    { id: 5 }\n  ],\n  edges: [\n    { source: 0, target: 1 },\n    { source: 0, target: 2, directed: true },\n    { source: 0, target: 3 },\n    { source: 1, target: 2, directed: true },\n    { source: 4, target: 0 },\n    { source: 5, target: 0, directed: true },\n    { source: 4, target: 5 }\n  ]\n}).update()\n```\n\n## API and Examples\n\nCheck out the examples and API at the [`homepage`](http://mauriciopoppe.github.io/greuler/)\n\n## License\n\n2023 MIT © Mauricio Poppe\n\n[npm-image]: https://img.shields.io/npm/v/greuler.svg?style=flat\n[npm-url]: https://npmjs.org/package/greuler\n","project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauriciopoppe%2Fgreuler","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fmauriciopoppe%2Fgreuler","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fmauriciopoppe%2Fgreuler/lists"}