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

@oxth/heatmap

v1.0.7

Published

Dynamic JavaScript Heatmaps for the Web and server

Downloads

8

Readme

heatmap.js

Heatmaps for the Node.js.

This project was fork from heatmap.js to make support only generate heatmap from backend

How to get started

heatmap is also hosted on npm:

npm install @oxth/heatmap

Importing

import Heatmap from '@oxth/heatmap'

Example

const heatmap = new Heatmap({
  width: 640,
  height: 640,
  backgroundImage: 'img_test.jpg',
  radius: 2.2,
  minOpacity: 0.3,
  maxOpacity: 0.5,
});
const points = getCanvasData();
heatmap.setData(points);
await heatmap.save('test.png');

Configurations

| Param | Type | Default | Required | Description | |--------------------|--------------------------------------------------------------|---------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------------|----------|-----------------------------------------------------------------------------------------------------------------------------| | renderer | string | canvas2d | No | Choose your render type (currently only support 2D canvas) | | width | number | 640 | No | Width of your image. | | height | canvas2d | 640 | No | Height of image. | | min | number | null | No | Max data Value for relative gradient computation. if not set, will be derived from data. | | max | number | null | No | Min data Value for relative gradient computation. if not set, will be derived from data. | | radius | number | 20 | No | Radius of the data point, in pixels. | | opacity | number | 0 | No | Opacity factor. (This overrides maxOpacity and minOpacity if greater than 0) | | minOpacity | number | 0 | No | Min opacity factor. (will be overridden if opacity set) | | maxOpacity | number | 1 | No | Max opacity factor. (will be overridden if opacity set) | | intensity | number | 0.25 | No | The intensity that will be applied to all datapoints. The lower the intensity factor is, the smoother the gradients will be | | useGradientOpacity | boolean | false | No | A boolean flag to use opacity of Color Gradient instead of specify opacity | | gradients | {color: [number, number, number, number?], offset: number}[] | [{ color: [0, 0, 255], offset: 0, }, { color: [0, 0, 255], offset: 0.2, }, { color: [0, 255, 0], offset: 0.45, }, { color: [255, 255, 0], offset: 0.85, }, { color: [255, 0, 0], offset: 1.0, },] | No | Color Gradient, an array of objects with color value and offset. | | backgroundImage | string | | No | To set the background for the heatmap. | | plugins | object | {} | No | The plugin support. |

Available API

instance.addData([])

Accepts an array of data points with 'x', 'y' and 'value'.

instance.addData([x: , y: , value: ])

instance.setData([])

Accepts an array of data points with 'x', 'y' and 'value'.

instance.setData([x: , y: , value: ])

instance.clearData([])

instance.clearData()

instance.configure({})

Update the configuration

instance.configure({ width: , height: })

instance.toDataURL()

get output to base64 data url

await instance.toDataURL()

instance.toBuffer()

get output to buffer

await instance.toBuffer()

instance.save(filename)

get output to file

await instance.save('test.png')