{"id":13492061,"url":"https://github.com/dmester/jdenticon","last_synced_at":"2025-05-14T18:02:51.996Z","repository":{"id":23327741,"uuid":"26687918","full_name":"dmester/jdenticon","owner":"dmester","description":"Javascript library for generating identicons. Running in the browser and on Node.js.","archived":false,"fork":false,"pushed_at":"2024-05-10T09:59:32.000Z","size":11919,"stargazers_count":1284,"open_issues_count":0,"forks_count":92,"subscribers_count":20,"default_branch":"master","last_synced_at":"2025-05-13T09:15:35.770Z","etag":null,"topics":["avatar","identicon","identicons","javascript","jdenticon"],"latest_commit_sha":null,"homepage":"https://jdenticon.com","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/dmester.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":"2014-11-15T17:40:09.000Z","updated_at":"2025-05-13T03:42:05.000Z","dependencies_parsed_at":"2024-05-10T10:32:18.941Z","dependency_job_id":"93798b5e-03b5-413a-9fd7-cdde5cb5089d","html_url":"https://github.com/dmester/jdenticon","commit_stats":{"total_commits":292,"total_committers":5,"mean_commits":58.4,"dds":"0.12671232876712324","last_synced_commit":"c894f54c50b1ee07754d09c2b7edabea0f1c9351"},"previous_names":[],"tags_count":23,"template":false,"template_full_name":null,"repository_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmester%2Fjdenticon","tags_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmester%2Fjdenticon/tags","releases_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmester%2Fjdenticon/releases","manifests_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/repositories/dmester%2Fjdenticon/manifests","owner_url":"https://repos.ecosyste.ms/api/v1/hosts/GitHub/owners/dmester","download_url":"https://codeload.github.com/dmester/jdenticon/tar.gz/refs/heads/master","host":{"name":"GitHub","url":"https://github.com","kind":"github","repositories_count":254198452,"owners_count":22030964,"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":["avatar","identicon","identicons","javascript","jdenticon"],"created_at":"2024-07-31T19:01:02.749Z","updated_at":"2025-05-14T18:02:46.985Z","avatar_url":"https://github.com/dmester.png","language":"JavaScript","readme":"# [Jdenticon](https://jdenticon.com)\nJavaScript library for generating highly recognizable identicons using HTML5 canvas or SVG.\n\n![Sample identicons](https://jdenticon.com/hosted/github-samples.png)\n\n[![Tests](https://img.shields.io/github/actions/workflow/status/dmester/jdenticon/tests.js.yml?branch=master\u0026style=flat-square)](https://github.com/dmester/jdenticon/actions)\n[![Downloads](https://img.shields.io/npm/dt/jdenticon.svg?style=flat-square)](https://www.npmjs.com/package/jdenticon)\n[![jsDelivr](https://data.jsdelivr.com/v1/package/npm/jdenticon/badge?style=square)](https://www.jsdelivr.com/package/npm/jdenticon)\n[![npm bundle size](https://img.shields.io/bundlephobia/min/jdenticon.svg?style=flat-square)](https://bundlephobia.com/result?p=jdenticon)\n[![License MIT](https://img.shields.io/badge/license-MIT-green.svg?style=flat-square)](https://github.com/dmester/jdenticon/blob/master/LICENSE)\n\n## Live demo\nhttps://jdenticon.com\n\n## Getting started\nUsing Jdenticon is simple. Follow the steps below to integrate Jdenticon into your website.\n\n### 1. Add identicon placeholders\nJdenticon is able to render both raster and vector identicons. Raster icons are rendered \nslightly faster than vector icons, but vector icons scale better on high resolution screens.\nAdd a canvas to render a raster icon, or an inline svg element to render a vector icon.\n\n```HTML\n\u003c!-- Vector icon --\u003e\n\u003csvg width=\"80\" height=\"80\" data-jdenticon-value=\"icon value\"\u003e\u003c/svg\u003e\n\n\u003c!-- OR --\u003e\n\n\u003c!-- Raster icon --\u003e\n\u003ccanvas width=\"80\" height=\"80\" data-jdenticon-value=\"icon value\"\u003e\u003c/canvas\u003e\n```\n\n### 2. Add reference to Jdenticon\nInclude the Jdenticon library somewhere on your page. You can either host it yourself or \nuse it right off [jsDelivr](https://www.jsdelivr.com).\n\n```HTML\n\u003c!-- Using jsDelivr --\u003e\n\u003cscript src=\"https://cdn.jsdelivr.net/npm/jdenticon@3.3.0/dist/jdenticon.min.js\"\n        integrity=\"sha384-LfouGM03m83ArVtne1JPk926e3SGD0Tz8XHtW2OKGsgeBU/UfR0Fa8eX+UlwSSAZ\"\n        crossorigin=\"anonymous\"\u003e\n\u003c/script\u003e\n\n\u003c!-- OR --\u003e\n\n\u003c!-- Hosting it yourself --\u003e\n\u003cscript src=\"-path-to-/jdenticon.min.js\"\u003e\u003c/script\u003e\n```\nThat's it!\n\n## Other resources\n### API documentation\nFor more usage examples and API documentation, please see:\n\nhttps://jdenticon.com\n\n### Other platforms\nThere are ports or bindings for Jdenticon available for the following platforms:\n\n* [PHP](https://github.com/dmester/jdenticon-php/)\n* [React](https://www.npmjs.com/package/react-jdenticon)\n* [Angular](https://www.npmjs.com/package/ngx-jdenticon)\n* [.NET](https://github.com/dmester/jdenticon-net/)\n* [Rust](https://github.com/jay3332/rdenticon)\n* [Polymer](https://github.com/GeoloeG/identicon-element)\n* [Swift](https://github.com/aleph7/jdenticon-swift)\n* [Java](https://github.com/sunshower-io/sunshower-arcus/tree/master/arcus-identicon)\n* [Dart/Flutter](https://pub.dartlang.org/packages/jdenticon_dart)\n* [Kotlin](https://github.com/WycliffeAssociates/jdenticon-kotlin)\n\n## License\nJdenticon is available under the [MIT license](https://github.com/dmester/jdenticon/blob/master/LICENSE).\n","funding_links":[],"categories":["Jdenticon","JavaScript"],"sub_categories":[],"project_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmester%2Fjdenticon","html_url":"https://awesome.ecosyste.ms/projects/github.com%2Fdmester%2Fjdenticon","lists_url":"https://awesome.ecosyste.ms/api/v1/projects/github.com%2Fdmester%2Fjdenticon/lists"}