update readme, bump version

This commit is contained in:
Anton Lavrenov 2017-10-11 12:27:09 +04:00
parent bdc3a2d30e
commit 8b2f847850
2 changed files with 14 additions and 19 deletions

View File

@ -113,19 +113,21 @@ import 'konva/src/shapes/rect';
### 5 NodeJS
You have to install some deps manually to use Konva in nodejs env.
We are using [node-canvas](https://github.com/Automattic/node-canvas) to create canvas element.
Please check installation instructions for it. Then just run
1. Install node-canvas dependencies [https://github.com/Automattic/node-canvas](https://github.com/Automattic/node-canvas)
2. `npm install canvas --save`
2. `npm install jsdom --save`
3. `npm install konva --save`
```bash
npm install konva-node
```
Then in you javascript file you will need to use
```javascript
const Konva = require('konva-node');
```
See file `resources/nodejs-demo.js` for example.
Last tested with node@5.10.1, canvas@1.3.14, jsdom@8.5.0
# Change log
See [CHANGELOG.md](https://github.com/konvajs/konva/blob/master/CHANGELOG.md).

View File

@ -1,19 +1,12 @@
{
"name": "konva-node",
"version": "0.5.0",
"version": "0.5.1",
"description": "Konva framework for NodeJS env",
"main": "index.js",
"files": [
"index.js"
],
"files": ["index.js"],
"typings": "./node_modules/konva/konva.d.ts",
"scripts": {},
"keywords": [
"canvas",
"animations",
"graphic",
"html5"
],
"keywords": ["canvas", "animations", "graphic", "html5"],
"author": "Anton Lavrenov",
"bugs": {
"url": "https://github.com/konvajs/konva/issues"
@ -26,6 +19,6 @@
"license": "MIT",
"dependencies": {
"canvas": "^1.6.7",
"konva": "^1.7.0"
"konva": "^1.7.1"
}
}