
Security News
Cline CLI npm Package Compromised via Suspected Cache Poisoning Attack
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.
highcharts-browserify
Advanced tools
Browserify bundle for Highcharts.
$ npm install --save highcharts-browserify
N.b. highcharts patches jQuery so please ensure your project uses the same version as highcharts-browserify so you do not have two versions in your node_modules folder.
var $ = require('jquery');
var HighCharts = require('highcharts-browserify');
new Highcharts.Chart({
chart: {
renderTo: $('#my-chart')
},
// ... more options - see http://api.highcharts.com/highcharts
});
Several extra graph types are included as modules. By requiring the graph type you need, highcharts will be extended to support that graph type.
var $ = require('jquery');
var HighCharts = require('highcharts-browserify/modules/solid-gauge');
new Highcharts.Chart({
chart: {
type: 'solidgauge',
renderTo: $('#my-chart')
},
// ... more options - see http://www.highcharts.com/articles/2-news/46-gauges-ranges-and-polar-charts-in-beta
});
Just require the theme you want to use. Highcharts will automatically be configured to use that theme. See the themes documentation for more information.
var $ = require('jquery');
var HighCharts = require('highcharts-browserify');
require('highcharts-browserify/themes/dark-blue');
new Highcharts.Chart({
chart: {
renderTo: $('#my-chart')
},
// ... more options - see http://api.highcharts.com/highcharts
});
highcharts-browserify is only possible due to the excellent work of the following collaborators:
FAQs
Highcharts wrapper for browserify
The npm package highcharts-browserify receives a total of 58 weekly downloads. As such, highcharts-browserify popularity was classified as not popular.
We found that highcharts-browserify demonstrated a not healthy version release cadence and project activity because the last version was released a year ago. It has 1 open source maintainer collaborating on the project.
Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Security News
A compromised npm publish token was used to push a malicious postinstall script in cline@2.3.0, affecting the popular AI coding agent CLI with 90k weekly downloads.

Product
Socket is now scanning AI agent skills across multiple languages and ecosystems, detecting malicious behavior before developers install, starting with skills.sh's 60,000+ skills.

Product
Socket now supports PHP with full Composer and Packagist integration, enabling developers to search packages, generate SBOMs, and protect their PHP dependencies from supply chain threats.