Socket
Socket
Sign inDemoInstall

blockies-react-svg-test

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

blockies-react-svg-test

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


Version published
Weekly downloads
0
decreased by-100%
Maintainers
1
Weekly downloads
 
Created
Source

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

Demo of React SPA (you can read the code in the gh-pages branch)

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

Installation

$ npm i blockies-react-svg

Usage

1. Use React FC:

import BlockiesSvg from 'blockies-react-svg'
// Or use tsx directly:
// import BlockiesSvg from 'blockies-react-svg/src/BlockiesSvg.tsx'
// (The path to the file may have change, please check it when error happen.)

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

2. Use Base64 URL(browser/nodejs):

import makeBlockiesUrl from 'blockies-react-svg/dist/es/makeBlockiesUrl.js'
// Or use ts directly:
// import makeBlockiesUrl from 'blockies-react-svg/src/makeBlockiesUrl.ts'
// (The path to the file may have change, please check it when error happen.)

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

// Parameters:
// 1. address: string
// 2. size: number (default 8)
// 3. caseSensitive: boolean (default false)
// 4. scale: number (default 10)

3. Use React Sync Component:

import BlockiesSvgSync from 'blockies-react-svg/dist/es/BlockiesSvgSync.js'
// or use tsx directly:
// import BlockiesSvgSync from 'blockies-react-svg/src/BlockiesSvgSync.tsx'
// (The path to the file may have change, please check it when error happen.)

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

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.

Keywords

FAQs

Package last updated on 14 Feb 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc