Skip to content

Commit

Permalink
update and some fixes
Browse files Browse the repository at this point in the history
  • Loading branch information
blackart committed Dec 27, 2017
1 parent ea26b6e commit 90b598b
Show file tree
Hide file tree
Showing 3 changed files with 9 additions and 4 deletions.
8 changes: 8 additions & 0 deletions README.md
Original file line number Diff line number Diff line change
@@ -1,5 +1,7 @@
[<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)

[![NPM Version][npm-image]][npm-url] [![NPM Downloads][downloads-image]][downloads-url] [![Package Quality][quality-image]][quality-url]

# AnyChart Node.js Report Server
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.

Expand Down Expand Up @@ -299,3 +301,9 @@ External resources are required when:
## License
[© 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).

[npm-image]: https://img.shields.io/npm/v/anychart-export-server.svg?style=flat-square
[npm-url]: https://www.npmjs.com/package/anychart-export-server
[downloads-image]: https://img.shields.io/npm/dm/anychart-export-server.svg?style=flat-square
[downloads-url]: https://www.npmjs.com/package/anychart-export-server
[quality-image]: http://npm.packagequality.com/shield/anychart-export-server.svg?style=flat-square
[quality-url]: http://packagequality.com/#?package=anychart-export-server
1 change: 0 additions & 1 deletion index.js
Original file line number Diff line number Diff line change
Expand Up @@ -6,7 +6,6 @@ var program = require('commander');
var uuidv4 = require('uuid/v4');
var fs = require('fs');
var vm = require('vm2');
var jsdom = require('jsdom').jsdom;
var csv = require('csv');
var xlsx = require('xlsx');
var path = require('path');
Expand Down
4 changes: 1 addition & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
"title": "AnyChart Node.js Report Server",
"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.",
"main": "./index.js",
"version": "1.0.12",
"version": "1.0.13",
"homepage": "https://www.anychart.com",
"license": "Apache-2.0",
"keywords": [
Expand Down Expand Up @@ -32,14 +32,12 @@
},
"bin": "./index.js",
"dependencies": {
"anychart": "^8.0.0",
"anychart-nodejs": "^1.3.1",
"body-parser": "^1.18.2",
"commander": "^2.12.2",
"csv": "^1.2.1",
"express": "^4.16.2",
"fontfaceobserver": "^2.0.13",
"jsdom": "^9.9.1",
"pdfmake": "^0.1.34",
"request": "^2.83.0",
"uuid": "^3.1.0",
Expand Down

0 comments on commit 90b598b

Please sign in to comment.