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 🙏

© 2025 – Pkg Stats / Ryan Hefner

@datapos/datapos-tool-highcharts

v0.0.48

Published

A TypeScript wrapper for Highcharts that implements the Data Positioning chart-rendering interface. It optimizes browser memory usage by maintaining a single Highcharts instance shared across all presenters, loading optional modules only as needed.

Readme

Data Positioning Highcharts Tool

OWASP License: MIT

A TypeScript wrapper for Highcharts that implements the Data Positioning chart-rendering interface. It improves browser memory efficiency by sharing a single Highcharts instance shared across all presenters and loading optional modules on demand.

Installation

There’s no need to install this tool manually. Once released, it’s uploaded to the Data Positioning Engine cloud and becomes instantly available to all new instances of the browser app. A notification about the new version is also sent to all existing browser apps.

Usage

Basic usage example with no error handling.

import type { HighchartsTool, HighchartsView } from '@datapos/datapos-tool-highcharts';

async function loadHighchartsTool(version: string): Promise<HighchartsTool> {
    if (highchartsTool) return highchartsTool;

    const URL = `https://engine-eu.datapos.app/tools/highcharts_v${version}/datapos-tool-highcharts.es.js`;
    const HighchartsTool = (await import(/* @vite-ignore */ URL)).HighchartsTool as new () => HighchartsTool;
    return new HighchartsTool();
}

const highchartsTool = await loadHighchartsTool('n.n.nnn');

const cartesianChart: HighchartsView = await highchartsTool.renderCartesianChart(/* arguments... */);
const polarChart: HighchartsView = await highchartsTool.renderPolarChart(/* arguments... */);
const rangeChart: HighchartsView = await highchartsTool.renderRangeChart(/* arguments... */);

Reports & Compliance

Dependency Check Report

The OWASP Dependency Check Report identifies known vulnerabilities in project dependencies. It is generated automatically on each release using the npm package owasp-dependency-check. We also rely on GitHub Dependabot to continuously check for vulnerabilities across all dependencies.

View the OWASP Dependency Check Report

Dependency Licenses

The following table lists top-level production and peer dependencies. All these dependencies (including transitive ones) have been recursively verified to use Apache-2.0, CC0-1.0, or MIT—commercially friendly licenses with minimal restrictions. Developers cloning this repository should independently verify dev and optional dependencies; users of the uploaded library are covered by these checks.

| Name | Type | Installed | Latest | Latest Modified | | :---------------------- | :--------------------------------: | :-------: | :-----: | :----------------------- | | @datapos/datapos-shared | MIT | 0.3.252 | 0.3.252 | 2025-11-25T16:48:28.532Z | | highcharts | https://www.highcharts.com/license | 12.4.0 | 12.4.0 | 2025-09-08T08:04:35.549Z |

Installed dependencies are kept up-to-date with latest releases.

Bundle Analysis Report

The Bundle Analysis Report provides a detailed breakdown of the bundle's composition and module sizes, helping to identify which modules contribute most to the final build. It is generated automatically on each release using the npm package rollup-plugin-visualizer.

View the Bundle Analysis Report

Repository Management Commands

The following list details the repository management commands implementation by this project. For more details, please refer to the scripts section of the 'package.json' file in this project.

| Name | VS Code Shortcuts | Notes | | ------------------ | ----------------- | -------------------------------------------------------------------------------------------------------------------------------------------------- | | audit | alt+ctrl+shift+a | Audit the project's dependencies for known security vulnerabilities. | | build | alt+ctrl+shift+b | Build the package using Vite. Output to '/dist' directory. | | check | alt+ctrl+shift+c | Identify outdated dependencies using npm outdated and npm-check-updates with option to install latest versions. Also runs retire scanner. | | document | alt+ctrl+shift+d | Identify licenses of the project's production and peer dependencies. See LICENSES.json. | | format | alt+ctrl+shift+f | Use prettierto enforce formatting style rules. | | lint | alt+ctrl+shift+l | Use eslintto check the code for potential errors and enforces coding style rules. | | publish | alt+ctrl+shift+p | Publish the package to npm. | | release | alt+ctrl+shift+r | Bump version, build configuration, build presenter, synchronise with GitHub, upload presenter to Data Positioning platform and publish to npm. | | sync:withGitHub | alt+ctrl+shift+s | Synchronise local repository with the main GitHub repository. | | test | alt+ctrl+shift+t | ❌ Not implemented. | | update:dataPosDeps | alt+ctrl+shift+u | Install the latest version of all Data Positioning dependencies. |

License

MIT © 2026 Data Positioning Pty Ltd