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

zcanvas

v6.0.5

Published

Compact JavaScript library that provides an Object based solution for working with HTMLCanvas drawables as if they were tangible, separate objects. Good for lightweight game engines and mobile friendly.

Downloads

882

Readme

zCanvas

A lightweight JavaScript library for interacting with HTML Canvas "drawables" as if they were separately animatable, interactive objects. zCanvas is optimized for mobile devices, relying on optimal use of resources and works well with touch events; as such zCanvas can be an excellent resource for creating (mobile) browser based games. It is however also equally useful for creating complex graphical interfaces.

zCanvas is written in TypeScript, has no dependencies and works independently from (and thus works with) any other JavaScript framework.

Why use zCanvas ?

zCanvas sure isn't the first JS Canvas rendering library, so to summarize:

  • it weighs a mere 15K gZipped
  • uses Worker based rendering to free up CPU for your application on the main thread
  • loads image files from File / Blob / string (URL, Blob URL, base64 encoding) / HTMLImageElement / HTMLCanvasElement / ImageData / ImageBitmap sources
  • takes care of HDPI scaling and distortion-free stretching to present well on mobile screens
  • provides an abstraction layer close to - but with in-built optimizations for handling - CanvasRenderingContext2D API draw calls.

Live Demos

You can view some basic features in the down-and-dirty demos here.

Note these demos were written in vanilla JavaScript without the use of any libraries (other than a transpiled version of zCanvas). You can have a peek at the source to see what's going on.

Game demos

Graphics manipulation demos

Real-life examples

zCanvas is used in proprietary image editing software, but is also the rendering engine behind Bitmappery (image editor) and Pinball Schminball (2D pinball game).

DisplayList convention

Where the HTMLCanvasElement differs from other HTML elements (in that its content isn't represented as individual nodes inside the DOM but directly drawn as pixels onto a single surface), zCanvas provides an API that allows you to interact with drawable objects as individual entities (called Sprites), attaching logic to individual elements, leaving you as a developer without the hassle of managing the (lack of) relationship between the canvas contents and the surrounding DOM.

zCanvas follows the concept of the DisplayList where drawable objects become visible on screen once they have been added to a container. Sprites are also containers, so you can stack Sprites onto other Sprites, without having to worry about z indices.

zCanvas will provide an API that takes care of all animation and update logic you'd associate with, for instance, a game loop, rendering images or even using animated spritesheets. You'll find that in regular use you'll hardly ever have to override the basic Sprite behaviour. However, the rendering logic (i.e. the "drawing" of the visual content) can be as low level as you'd like, by drawing straight onto the HTMLCanvasElement using the browsers CanvasRenderingContext2D-API, albeit with an abstraction layer that handles performance optimizations under the hood.

Optimized for high performance

zCanvas has been optimized extensively for best performance and works a treat on mobile devices. The amount of event listeners attached to DOM elements are limited to the HTMLCanvasElement only, where the internal interactions are delegated to the Sprites visible on the canvas. Events triggering updates on the display list are automatically debounced to only render once per animation frame.

In environments where OffscreenCanvas is supported, the rendering will automatically be offloaded onto a Worker, freeing up the main thread of your application considerably.

As mentioned before, zCanvas is also tiny and adds little overhead to your application size.

Easily animatable

As all rendering logic resides within a single method of your Sprite, you can easily attach animation libraries such as the excellent GreenSock Animation Platform to alter the visible properties of your sprites for maximum eye candy.

Additionally, zCanvas comes with built-in frame throttling logic that allows game like implementations to update at the same speed, regardless of the rendering capabilities (e.g. achievable frames per second) of the environment.

Works practically everywhere

zCanvas has been written to work within a ES module structure, but comes prebuilt and transpiled to work in either a module, CommonJS or a browser environment. zCanvas has been tested and verified to work on all half-decent, half-recent browsers.

Should you however wish to support one of the ancient browsers listed below, zCanvas up to version 5.1.10 can cater to the following:

  • Internet Explorer 9+ (note: requires polyfill for requestAnimationFrame)
  • Chrome 22+
  • Apple Safari 6+ (including Mobile Safari)
  • Firefox 4+
  • Android browser 4.4+

*Note IE9 and some other browsers might need a polyfill for Promise at the versions listed above, but it is likely any of those are on auto update channels and at way higher versions in the wild. It just works.

The API / Documentation

Want to view the API? You can check the zCanvas Wiki which describes all the common actors, functions and utilities while also providing documentation with regards to performance optimizations as well as catering for several use cases.

(for those craving a more hands-on approach, you can also view the source contents of the demos listed above)

Installation

You can get zCanvas via NPM:

npm install zcanvas

Project Integration

zCanvas is compatible with ES6 modules, CommonJS, AMD/RequireJS or can be included in a document via script tags:

ES6 module:

import { Canvas, Loader, Sprite } from "zcanvas";

After which you can subsequently use a tool like Webpack to bundle your application for the browser.

RequireJS

Use zcanvas.umd.js inside the dist-folder for a prebuilt, minimized RequireJS library transpiled to JS.

require([ "zcanvas.amd" ], zCanvas => {
    const { Canvas, Loader, Sprite } = zCanvas;  
});

Browser:

Use zcanvas.iife.js inside the dist-folder for a prebuilt, minimized library transpiled to JS.

<script type="text/javascript" src="./dist/zcanvas.min.js"></script>
<script type="text/javascript">

    const { Canvas, Loader, Sprite } = zcanvas;

</script>

Build instructions

To those willing to contribute, the following build targets exist. The project dependencies are maintained by NPM, you can resolve them using:

npm install

You can build the module, AMD and IIFE versions of the library using:

npm run build

After which a folder ./dist/ is created which contains the different formats.

Unit testing

Unit tests are run via Vitest, you can run the tests by running:

npm run test

Unit tests go in the ./test-folder. The file name for a unit test must be equal to the file it is testing, but contain the suffix ".spec", e.g. functions.ts should have a test file functions.spec.ts.

Type checking

Run

npm run typecheck

To verify whether the code contains valid TypeScript.

To generate the type definitions file, run :

npm run types

after which types/zcanvas.d.ts is created in the ./dist/-folder.