Socket
Socket
Sign inDemoInstall

canvasjs

Package Overview
Dependencies
0
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

Comparing version 1.8.0 to 1.8.1

.babelrc

44

package.json
{
"name": "canvasjs",
"version": "1.8.0",
"version": "1.8.1",
"description": "CanvasJS charting library",
"main": "",
"scripts": {},
"main": "src/main/index.js",
"scripts": {
"build": "browserify ./src/main/index.js -d --s 'CanvasJS' > dist/canvasjs.js && node_modules/uglify-js/bin/uglifyjs --compress --mangle -- dist/canvasjs.js > dist/canvasjs.min.js",
"docs": "rm -rf docs/out/$npm_package_version && jsdoc src --configure jsdoc.conf",
"plato": "babel -d es5 src && plato -r -d docs/plato -t 'CanvasJS' es5 && rm -rf es5",
"lint": "eslint --ext .js src",
"bump": "npm run bump:patch",
"bump:patch": "npm-bump patch origin master",
"bump:minor": "npm-bump minor origin master",
"bump:major": "npm-bump major origin master"
},
"repository": "https://github.com/Tsur/canvasjs.git",
"license": "CC",
"dependencies": {},
"devDependencies": {}
"devDependencies": {
"babel-preset-es2015": "^6.1.18",
"babel-preset-stage-1": "^6.1.18",
"babelify": "^7.2.0",
"browserify": "^12.0.1",
"ghooks": "^1.0.1",
"uglify-js": "^2.6.1",
"npm-bump": "0.0.15"
},
"browserify": {
"transform": [
[
"babelify",
{
"presets": [
"es2015",
"stage-1"
]
}
]
]
},
"config": {
"ghooks": {
"pre-commit": "npm run build && git add . --all",
"pre-push": "npm run test"
}
}
}
CanvasJS, as depicted in its [official website](http://canvasjs.com), is a charting library:
> CanvasJS is an easy to use JavaScript & HTML5 Charts library built on Canvas element. It runs across devices including iPhone, iPad, Android, Windows Phone, Microsoft Surface, Desktops, etc. This allows you to create rich dashboards that work on all the devices without compromising on maintainability or functionality of your web application. CanvasJS comes with beautiful themes and is over 10x faster than conventional Flash and SVG Charts – resulting in lightweight, beautiful and responsive dashboards.
## Disclaimer
## Download
This repository just extends the original code by including new features and several fixes.
```
npm install canvasjs
```
The original code can be found at [http://canvasjs.com](http://canvasjs.com). It was released as [CC](http://creativecommons.org/licenses/by-nc/3.0/deed.en_US) for personal use and it needs to be licensed under commercial use - see terms [here](http://canvasjs.com/license-canvasjs/).
## Getting Started
## Download
First of all, you need to import it. This can be achieved in different ways depending up on what module definition pattern your application is using.
The CanvasJS package works by default with CommonJS so you can use it with browserify/webpack as shown below:
```js
// CommonJS
var CanvasJS = require('canvasjs');
// If you are using ES6, then
import CanvasJS from 'canvasjs';
```
npm install canvasjs
It is also possible to use it with AMD loaders as Require.js. If so, you can import it this way:
```js
// AMD
require('canvasjs/dist/canvasjs.js', function(CanvasJS){
// Add your stuff here
});
```
Finally, you may also import it as a global dependence:
```html
<script src="canvasjs/dist/canvasjs.js">
```
Then you can access the global variable `CanvasJS`.
** Note: dist folder also contains a minified version located at dist/canvasjs.min.js and ready for production, and also a wrapper for using it with jQuery.
## Build
```
npm run build
```
## Disclaimer
This repository just extends the original code by including new features and several fixes.
The original code can be found at [http://canvasjs.com](http://canvasjs.com). It was released as [CC](http://creativecommons.org/licenses/by-nc/3.0/deed.en_US) for personal use and it needs to be licensed under commercial use - see terms [here](http://canvasjs.com/license-canvasjs/).

Sorry, the diff of this file is not supported yet

Sorry, the diff of this file is too big to display

Sorry, the diff of this file is too big to display

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc