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

mixel

v1.0.4

Published

A rewrite of pixel-sprite-generator in Typescript.

Downloads

28

Readme

mixel

A rewrite of pixel-sprite-generator in Typescript.

Other changes:

  • Added ability to tint sprites
  • Added seedable RNG

Install

npm i mixel

Examples

See here for a list of visual examples.

Usage

Sample Usage

const SPACESHIP_MASK: Mask = {
  width: 6,
  height: 12,
  mirrorX: true,
  data: [
    0, 0, 0, 0, 0, 0,
    0, 0, 0, 0, 1, 1,
    0, 0, 0, 0, 1,-1,
    0, 0, 0, 1, 1,-1,
    0, 0, 0, 1, 1,-1,
    0, 0, 1, 1, 1,-1,
    0, 1, 1, 1, 2, 2,
    0, 1, 1, 1, 2, 2,
    0, 1, 1, 1, 2, 2,
    0, 1, 1, 1, 1,-1,
    0, 0, 0, 1, 1, 1,
    0, 0, 0, 0, 0, 0  
  ]
};

for(let i = 0; i < SPRITE_COUNT; i++) {
  const sprite = new Sprite(SPACESHIP_MASK, {
    colored: true
  });

  const canvas = createCanvas(sprite);
  document.getElementById('spaceship-default-settings').appendChild(canvas);
}

API

Mask

A Mask is the general shape of the generated object. It supports these parameters:

Name | Type | Default | Description ---- | ---- | ------- | ----------- width | number | 0 | The number of pixels wide the mask should be (if mirrorX is set, will be doubled). height | number | 0 | The number of pixels tall the mask should be (if mirrorY is set, will be doubled). mirrorX | boolean | false | Whether the mask should mirror across the Y axis (from left to right). mirrorY | boolean | false | Whether the mask should mirror across the X axis (from top to bottom). data | SpriteStructure[] | [] | An array of values (-1..2) representing a SpriteStructure value.

SpriteOptions

SpriteOptions are specifically used in the manipulation of the sprite.

Name | Type | Default | Description ---- | ---- | ------- | ----------- colored | boolean | false | Whether or not the sprite should have color. edgeBrightness | number (0, 1) | 0.3 | How bright the edges of the sprite should be. colorVariations | number (0, 1) | 0.2 | Higher numbers make the color variations within a sprite more frequent. brightnessNoise | number (0, 1) | 0.3 | Higher numbers make the brightness more "fuzzy" near the edge. saturation | number (0, 1) | 0.5 | Higher numbers make the general saturation of the image appear more colorful. seed | string | none | The seed to use for random generation. Using the same seed/mask will result in the same image every time. tint | { r: number, g: number, b: number, a: number } | none | The tint to apply to the image when it's been generated. randomSampleCallback | (x: number, y: number) => SpriteStructure | Randomly change 1/2 to -1/0 | The callback to be applied to each individual cell of the sprite.

More Usage

Check the editor here to see more examples.