npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

gummygrid

v1.0.1

Published

a visually customizable grid avatar generator

Downloads

24

Readme

GummyGrid

examples

A cool little avatar generator that you can customize to your own liking, with settings like grid dimensions, colors, cell rounding, and more.

How to use

Start by installing the library:

npm install gummygrid
yarn add gummygrid
pnpm add gummygrid

Next, import and initialize GummyGrid, building an avatar from a string like so:

import GummyGrid from 'gummygrid';

const gg = new GummyGrid();

const svg = gg.buildFrom('jarvis');

// 👇🏻 some helpful methods

// converting to string
const rawSvgString = svg.toString();
const urlEncodedString = svg.toUrlEncodedString({ withPrefix: true });

// writing to a file on the server
svg.writeFile('./avatar.svg').then(() => {
  console.log('✅ wrote to file');
});

// downloading a file in the browser
svg.downloadFile('avatar.svg');

// converting to other object types
const blob = svg.toBlob();
const buffer = svg.toBuffer();

The resulting avatar:

Customization

The default settings are a little boring – let's start by changing the grid size. We can either set a single number (e.g. size: 10), or specify separate lengths for rows and columns:

const gg = new GummyGrid({
  grid: {
    size: {
      rows: 8,
      columns: 7,
    },
  },
});

Result 👇🏻

Now let's customize the cells themselves.

Let's say we want a fixed background color and two possible colors for the cells, with darker shades on the cell outlines and shadows. We can achieve this by specifying four arrays of colors and then locking some of them together, so that they aren't picked independently.

Also, let's give the cells some rounding on the outside, as well as in places where filled cells form corners.

const gg = new GummyGrid({
  grid: {
    size: {
      rows: 8,
      columns: 7,
    },
  },
  svg: {
    colors: {
      background: ['hsl(216, 28%, 7%)'],
      cellFill: ['hsl(92, 100%, 54%)', 'hsl(211, 100%, 54%)'],
      cellStroke: ['hsl(92, 100%, 20%)', 'hsl(211, 100%, 21%)'],
      dropShadow: ['hsl(92, 100%, 21%)', 'hsl(211, 100%, 21%)'],
    },
    lockColors: ['cellFill', 'cellStroke', 'dropShadow'],
    strokeWidth: 2,
    filters: {
      dropShadow: ['0', '0', '1px'],
    },
    cellRounding: {
      outer: 0.75, // around a filled cell
      inner: 0.25, // where two filled cells form an in-corner
    },
  },
});

Result 👇🏻

All configuration options:

Grid config
  • size – number of cells in the grid;
  • verticalSymmetry – makes the grid vertically symmetrical;
  • ensureFill – ensures some edge cells are filled to create a sense of balance;
SVG config
  • patternAreaRatio – amount of image space taken up by the grid pattern;
  • colors – arrays of colors to choose from. The object values can either be strings describing a plain color, or objects describing a gradient;
  • lockColors – an array describing which colors should be locked together. E.g., with lockColors: ['cellFill', 'cellStroke'], if color #2 is picked from colors.cellFill, then color #2 will also be picked from colors.cellStroke;
  • strokeWidth – outline thickness;
  • cellRounding – border radius. outer describes the rounding around a filled cell, while inner describes the rounding on the in-corners formed by filled cells
  • filters – applies CSS filters to grid pattern;
  • gutter – spacing between filled cells;
  • flow – only applies cellRounding.outer to parts of a cell that aren't touching any other cell (true by default);
  • paintOrder – SVG attribute (see mdn entry);
  • strokeLineJoin – SVG attribute (see mdn entry);
Randomizer config
  • salt – pre-determines how a grid is generated. With an otherwise unchanged config, changing the salt will change the resulting grid layout;
  • bias.cellFillProbability – determines how likely a cell is to be filled. Setting to 1 will result in all cells getting filled, while setting to 0 will result in an empty grid, unless either of the grid.ensureFill options is enabled;
  • bias.colorWeights – arrays of weights that describe how likely a given color is be pe picked.