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 🙏

© 2026 – Pkg Stats / Ryan Hefner

pureimage-beta

v0.0.16

Published

Pure JS image drawing API based on Canvas. Export to PNG streams.

Readme

PureImage

PureImage is a pure JavaScript implementation of an image drawing and encoding API, based on HTML Canvas, for NodeJS. It has no native dependencies.

Current features:

  • set pixels
  • stroke and fill paths (rectangles, lines, quadratic curves)
  • copy images
  • export to PNG
  • render text (no bold or italics yet)

Why?

The are more than enough drawing APIs out there. Why do we need another? My personal hatred of C/C++ compilers is widely known. The popular Node modules Canvas.js does a great job, but it's backed by Cairo, a C/C++ layer. I hate having native dependencies in Node modules. They often don't compile, or break after a system update. They often don't support non-X86 architectures (like the Raspberry Pi). You have to have a compiler already installed to use them, along with any other native dependencies preinstalled (like Cairo).

So, I made PureImage. It's goal is to implement the HTML Canvas spec in a headless Node buffer. No browser or window required.

PureImage is meant to be a small and maintainable Canvas library. It is not meant to be fast. If there are two choices of algorithm we will take the one with the simplest implementation, and preferably the fewest lines. We avoid special cases and optimizations to keep the code simple and maintainable. It should run everywhere and be highly portable. But it will not be fast. If you need speed go use Canvas.js.

PureImage uses only pure JS dependencies. OpenType for font parsing and PngJS for PNG export.

Examples

Make a new empty image, 100px by 50px. Automatically filled with 100% opaque black.

var PImage = require('pureimage');
var img1 = PImage.make(100,50);

Fill with a red rectangle, 50% opacity

var ctx = img1.getContext('2d');
ctx.setFillStyleRGBA(255,0,0, 0.5);
ctx.fillRect(0,0,100,100);

Write out to a PNG file (uses pngjs)

PImage.encodePNG(img1, fs.createWriteStream('out.png'), function(err) {
    console.log("wrote out the png file to out.png");
});

On the roadmap

  • done drawing text from truetype files. Have to figure out a pure JS font rasterizer
  • done: quadratic curves
  • bezier curves, stroked and filled
  • anti-aliased curves (partially done)
  • full alpha compositing
  • PNG loading for compositing
  • Jpeg input/output

Thanks!

Thanks to Nodebox / EMRG for opentype.js

Thanks to Rosetta Code for Bresenham's in JS

Thanks to Kuba Niegowski for PngJS

Thanks to Eugene Ware for jpeg-js

Notes

  • move font stuff to pure image,
  • make a registerFont,
  • setFont(name,size,weight,style,variant),
  • and drawString function,
  • and measureText