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 ### 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. 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) ```bash
2. `npm install canvas --save` npm install konva-node
2. `npm install jsdom --save` ```
3. `npm install konva --save`
Then in you javascript file you will need to use
```javascript
const Konva = require('konva-node');
```
See file `resources/nodejs-demo.js` for example. 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 # Change log
See [CHANGELOG.md](https://github.com/konvajs/konva/blob/master/CHANGELOG.md). See [CHANGELOG.md](https://github.com/konvajs/konva/blob/master/CHANGELOG.md).

View File

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