2023-06-01 14:32:44 +02:00
2023-06-01 14:21:48 +02:00
2023-04-11 19:55:47 +02:00
2021-03-19 12:06:50 +01:00
2023-04-11 10:26:02 +02:00
2023-06-01 14:21:48 +02:00
2023-06-01 14:09:09 +02:00
2021-03-16 08:55:05 +01:00
2023-06-01 14:09:09 +02:00
2023-06-01 14:09:09 +02:00
2023-06-01 14:09:09 +02:00
2023-06-01 14:09:09 +02:00
2023-06-01 14:32:44 +02:00
2023-06-01 14:09:09 +02:00

Minidenticons

Super lightweight SVG identicon generator. No dependencies.

minified + brotlied size minified + zipped size (using the minidenticon() function only)

minified + brotlied size minified + zipped size (using the included custom element)

dependencies types npm license

Minidenticons

Why

  • Generate identicons (pixelated avatars) on the client from usernames instead of fetching images from a server. Much faster, saves bandwidth and GDPR compliant!
  • Replace dull "initials" avatars by an easily remembered graphical avatar
  • Give a visual representation of hashes or any ID string

Live Demo 🎮

Play with it here.

Basic usage with the included custom element

Minidenticons uses ES modules, now widely supported in browsers. Import the minidenticonSvg custom element from the minidenticons.min.js file. This file can be located in a CDN (example below) or copied in any directory of your website (for better performance and to be GDPR compliant, since you dont have to connect to a third party server).

<script type="module">
  import { minidenticonSvg } from 'https://cdn.jsdelivr.net/npm/minidenticons@4.0.0/minidenticons.min.js'
</script>

Then simply use minidenticon-svg tags with a username attribute 😂

<minidenticon-svg username="alienHead66"></minidenticon-svg>

For instance with the alienHead66 username you will get the following identicon (without the border):

alienHead66 identicon
  • Note that the picture above is resized. By default custom elements identicons will take all the space available.

  • The white space around the colored squares is here to allow uncropped circle avatars like the ones you can see in the demo.

  • Custom element identicons are memoized (stored in memory so that it does not need to be recalculated).

  • Like for all elements except void elements, the closing tag </minidenticon-svg> is required.

By default the color saturation is set to 95% and the lightness is set to 45%. But you can change these values with the saturation and/or lightness attributes, for instance:

<minidenticon-svg username="alienHead66" saturation="60" lightness="50"></minidenticon-svg>

Play with the demo to find a combination of saturation and lightness that matches your website theme colors: light, dark, pastel or whatever 😎

Minidenticons light Minidenticons dark Minidenticons pastel

Advanced usage with the minidenticon() function

Instead of using the custom element, you can also use the minidenticon() function to generate SVG strings in your client (or your server).

minidenticon(seed: string, saturation?: number|string, lightness?: number|string): string

The minidenticon() function will return a SVG string generated from its seed string argument. The seed argument can be a username, but actually any string used as an identifier. That is why the argument name seed was preferred to username. Optional saturation and lightness arguments should be percentages; that is, numbers (or strings) between 0 and 100.

Note that the minidenticon() function itself is not memoized.

NodeJS

Be sure to use a NodeJS version greater or equal to 15.14.0.

Installation

npm install minidenticons

Import

import { minidenticon } from 'minidenticons'

The minidenticonSvg custom element should be tree-shaken from your bundle, for an even smaller size of minidenticons 😁

React

The following React component example inserts the identicon into an img tag src attribute. It also uses React useMemo to memoize the identicon.

import { minidenticon } from 'minidenticons'
import { useMemo } from 'react'

const MinidenticonImg = ({ username, saturation, lightness, ...props }) => {
  const svgURI = useMemo(
    () => 'data:image/svg+xml;utf8,' + encodeURIComponent(minidenticon(username, saturation, lightness)),
    [username, saturation, lightness]
  )
  return (<img src={svgURI} alt={username} {...props} />)
}

You can then use this component with img props such as width and height along with minidenticons ones. All props except username are optional.

<MinidenticonImg username="alienHead66" saturation="90" width="150" height="150" />

For a TypeScript version of this example see the original issue comment by Dan Yishai.

Workbox

In this example using Workbox, images with a path ending with identicons/<username>.svg are generated by the service worker and cached for one year.

import { minidenticon } from 'minidenticons'
import { registerRoute } from 'workbox-routing'

registerRoute(
  /identicons\/[^\/]+\.svg$/,
  async ({ url }) => {
    const username = url.pathname.match(/([^\/]+)\.svg$/)[1]
    return new Response(
      identicon(username),
      { headers: { "Content-Type": "image/svg+xml", "Cache-Control": "max-age=31536000" } }
    )
  }
)

Elm

For Elm enthusiasts there is a Minidenticons package on the Elm package repository: minidenticons-elm.

Collisions

You will always get the same identicon for a given username. But it is not impossible to have different usernames with the same identicon. That's a collision.

Generated identicons are 5×5 pixels large with vertical symmetry, and can have 9 different hues for the same saturation and lightness. This means there are 2(3×5)×9= 294,912 different identicons possible, but duplicate identicons are inevitable when using a lot of them. It shouldnt matter as identicons should not be used solely to identify an user, and should always be coupled to a unique username 😉

The npm test command results below show that you have less than 2% chances to generate a duplicate identicon when already using 10,000 of them.

0 collisions out of 100 (0.00%)
0 collisions out of 200 (0.00%)
0 collisions out of 300 (0.00%)
0 collisions out of 400 (0.00%)
0 collisions out of 500 (0.00%)
0 collisions out of 600 (0.00%)
0 collisions out of 700 (0.00%)
0 collisions out of 800 (0.00%)
0 collisions out of 900 (0.00%)
1 collisions out of 1000 (0.10%)
4 collisions out of 2000 (0.20%)
17 collisions out of 3000 (0.57%)
22 collisions out of 4000 (0.55%)
40 collisions out of 5000 (0.80%)
62 collisions out of 6000 (1.03%)
74 collisions out of 7000 (1.06%)
106 collisions out of 8000 (1.32%)
133 collisions out of 9000 (1.48%)
163 collisions out of 10000 (1.63%)

Performance

Minidenticons are fast.

Custom element benchmark

To see how long it takes for your browser to generate 100 identicon custom elements (for a big page) try out the online browser benchmark.

NodeJS benchmark

Simply run node benchmark/node at the root of a Minidenticons git clone.

On my machine I get the following result:

Time to generate 10000 minidenticon SVG strings for 15 characters random seeds:
8 milliseconds (10 runs average)

License

MIT

Stargazers ❤️

Stargazers repo roster for @laurentpayot/minidenticons

Description
No description provided
Readme MIT 476 KiB
Languages
JavaScript 63.2%
HTML 36.8%