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

@gush/candybar

v0.0.1

Published

🍫

Downloads

7

Readme

Candybar 🍫 Build Status

A simple <canvas> rendering engine and collection of classes and utils. And by "engine" I mean about as advanced as a broken scooter πŸ›΄ on fire πŸ”₯

🚨 This is an alpha release

Really, don't use this thing for anything yet.

Getting started

First, install it

yarn add @gush/candybar

then create a canvas

import { Canvas } from '@gush/candybar';

const canvas = new Canvas({
    canvas: document.getElementById('canvas'),
});

which will leave you with a beautiful blank canvas. πŸ™ŒπŸ»

Canvas options

Canvas classes can be created with a few options:

  • canvas
  • container
  • hasPointer
  • entities
  • pauseInBackground
  • dpr
new Canvas({
    // This is the required HTML element that the Canvas class will render to.
    canvas: document.getElementById('canvas'),
    // Container is the element that the canvas should be fit within,
    // if this is not provided it's assumed this is a full screen canvas
    container: document.getElementById('container'),
    // Indicates if the canvas should capture mouse/touch pointer events.
    hasPointer: true,
    // Indicates if the engine should pause when the window is not in focus
    pauseInBackground: true,
    // Entities are objects that will be renedered by the Canvas engine.
    entities: [...things],
    // Override Device Pixel Ratio. Defaults based on device and falls back to 1.
    dpr: 1,
});

Entities

The engine will loop through each entity and call a couple methods to "render" the entity. First a draw() method is called where you should do any drawing using the HTML canvas API. Then an update() method is called which should be used to update any properties based on the engine.

class MyThing {
    constructor() {
        this.x = 0;
        this.y = 0;
    }

    setup = ({ canvas }) => {
        // setup will be called once before the first draw and is provided the class context
        this.w = canvas.width / 10;
        window.addEventListener('resize', handleResize);
    };

    destroy = () => {
        // called when destroy is called on the Canvas
        window.removeEventListener('resize', handleResize);
    };

    draw = ({ ctx }) => {
        // draw with canvas API through the provided context
        ctx.fillRect(this.x, this.y, 100, 100);
    };

    update = ({ pointer }) => {
        // update the rect position based on pointer position
        const { x, y } = this.pointer.position;
        this.x = x;
        this.y = y;
    };

    resize = (context, event) => {
        // handle resize events.
        this.w = context.canvas.width / 10;
    };
}