0.0.13 • Published 8 months ago

blockies-react-svg v0.0.13

Weekly downloads
-
License
MIT
Repository
github
Last release
8 months ago

blockies-react-svg

Blockies react SVG function component, blocky identicons, address-unique ethereum avatar, SVG base64 generation in browser or nodejs.

It allows you to use responsive width and height without rerendering because of SVG properties, and it will store the result.

Base64 url is smaller(~2kb) than the canvas size(~16kb), so it is suitable for server-side rendering.(8x8)

The address will automatically be converted to lower case until you set the caseSensitive property.

Sample of generated blockies

Installation

$ npm i blockies-react-svg

Usage

import { BlockiesSvg, BlockiesSvgSync, makeBlockiesUrl, makeBlockiesSvgString } from 'blockies-react-svg'

// <BlockiesSvgSync 
<BlockiesSvg 
  address={address}
//size={8}
//scale={10}
//caseSensitive={false}
//defaultBackgroundColor="black"
  className='classname'
  style={styles} 
  />

<img src={makeBlockiesUrl(address)} />

<div dangerouslySetInnerHTML={{ __html: makeBlockiesSvgString(address) }} />

Why SVG?

  1. Canvas render doesn't support arbitrary size or other customized styles.

  2. SVG is the better experience, because of the infinite resolution.

  3. SVG file size is smaller than canvas.

Todo

  • ts component
  • base64 url
  • js compile
  • demo display (github pages)
  • pure base64 (remove react-dom/server dependence, ~70kb bundle size)
  • support nodejs
  • svg mirror optmization (reduce image size)
  • svg polygon optmization (reduce image size)
  • more shapes
  • different rand algorithm
0.0.14-canary.0

8 months ago

0.0.13

1 year ago

0.0.12

1 year ago

0.0.11

1 year ago

0.0.10

1 year ago

0.0.9

1 year ago

0.0.8

1 year ago

0.0.7

1 year ago

0.0.6

1 year ago

0.0.5

1 year ago

0.0.4

1 year ago

0.0.3

1 year ago

0.0.2

1 year ago

0.0.1

1 year ago