Skip to content

Commit 90b598b

Browse files
committed
update and some fixes
1 parent ea26b6e commit 90b598b

File tree

3 files changed

+9
-4
lines changed

3 files changed

+9
-4
lines changed

README.md

+8
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
[<img src="https://cdn.anychart.com/images/logo-transparent-segoe.png" width="234px" alt="AnyChart - Robust JavaScript/HTML5 Chart library for any project">](https://anychart.com)
22

3+
[![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Package Quality][quality-image]][quality-url]
4+
35
# AnyChart Node.js Report Server
46
AnyChart Node.js Report Server is a lightweight web server that provides API for generating [vector graphics (PDF, SVG, or PS)](https://github.com/AnyChart/Node.js-Report-Server#generate-vector-image---pdfsvgps), [bitmap images (PNG, JPG, or TIFF)](https://github.com/AnyChart/Node.js-Report-Server#generate-raster-image---pngjpgtiff), [PDF reports](https://github.com/AnyChart/Node.js-Report-Server#generate-pdf-report), and [data in CSV and XLSX (Excel)](https://github.com/AnyChart/Node.js-Report-Server#export-as-data-file---csvxlsx-excel). It uses the JavaScript code as well as JSON and XML configurations as input data. The server is very easy to install and customize, you can run it on any major platform: Linux, Windows, and macOS. It is ideal for creating report systems that send charts via email or social network sharing tools.
57

@@ -299,3 +301,9 @@ External resources are required when:
299301
## License
300302
[© AnyChart.com - JavaScript charts](http://www.anychart.com). AnyChart Export Server released under the [Apache 2.0 License](https://github.com/AnyChart/node-export-server/blob/master/LICENSE).
301303

304+
[npm-image]: https://img.shields.io/npm/v/anychart-export-server.svg?style=flat-square
305+
[npm-url]: https://www.npmjs.com/package/anychart-export-server
306+
[downloads-image]: https://img.shields.io/npm/dm/anychart-export-server.svg?style=flat-square
307+
[downloads-url]: https://www.npmjs.com/package/anychart-export-server
308+
[quality-image]: http://npm.packagequality.com/shield/anychart-export-server.svg?style=flat-square
309+
[quality-url]: http://packagequality.com/#?package=anychart-export-server

index.js

-1
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,6 @@ var program = require('commander');
66
var uuidv4 = require('uuid/v4');
77
var fs = require('fs');
88
var vm = require('vm2');
9-
var jsdom = require('jsdom').jsdom;
109
var csv = require('csv');
1110
var xlsx = require('xlsx');
1211
var path = require('path');

package.json

+1-3
Original file line numberDiff line numberDiff line change
@@ -3,7 +3,7 @@
33
"title": "AnyChart Node.js Report Server",
44
"description": "AnyChart Node.js Report Server is a lightweight web server that provides API for generating vector graphics (PDF, SVG, or PS), bitmap images (PNG, JPG, or TIFF), PDF reports, and data in CSV and XLSX (Excel). It uses the JavaScript code as well as JSON and XML configurations as input data. The server is very easy to install and customize, you can run it on any major platform: Linux, Windows, and macOS. It is ideal for creating report systems that send charts via email or social network sharing tools.",
55
"main": "./index.js",
6-
"version": "1.0.12",
6+
"version": "1.0.13",
77
"homepage": "https://www.anychart.com",
88
"license": "Apache-2.0",
99
"keywords": [
@@ -32,14 +32,12 @@
3232
},
3333
"bin": "./index.js",
3434
"dependencies": {
35-
"anychart": "^8.0.0",
3635
"anychart-nodejs": "^1.3.1",
3736
"body-parser": "^1.18.2",
3837
"commander": "^2.12.2",
3938
"csv": "^1.2.1",
4039
"express": "^4.16.2",
4140
"fontfaceobserver": "^2.0.13",
42-
"jsdom": "^9.9.1",
4341
"pdfmake": "^0.1.34",
4442
"request": "^2.83.0",
4543
"uuid": "^3.1.0",

0 commit comments

Comments
 (0)