mirror of
https://github.com/konvajs/konva.git
synced 2025-04-05 20:48:28 +08:00
special core.js module for creating minimal bundle. close #107
This commit is contained in:
parent
54bdee817f
commit
e4067c18f9
53
README.md
53
README.md
@ -61,13 +61,55 @@ This repository began as a GitHub fork of [ericdrowell/KineticJS](https://github
|
||||
</script>
|
||||
```
|
||||
|
||||
#Installation
|
||||
# Loading and installing Konva
|
||||
|
||||
* `bower install konva`
|
||||
* `npm install konva` - for Browserify. For nodejs you have to install some [dependencies](#nodejs)
|
||||
* CDN: [https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js](https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js)
|
||||
Konva support UMD loading. So you can use all variants to load the framework into your project:
|
||||
|
||||
###NodeJS
|
||||
1. Load Konva via classical `<script>` tag:
|
||||
|
||||
```html
|
||||
<script src="https://cdn.rawgit.com/konvajs/konva/0.10.0/konva.min.js"></script>
|
||||
```
|
||||
|
||||
You can use CDN: [https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js](https://cdn.rawgit.com/konvajs/konva/0.9.5/konva.min.js)
|
||||
|
||||
2. Load via AMD (requirejs):
|
||||
|
||||
```javascript
|
||||
define(['./konva'], function(Konva) {
|
||||
// your code
|
||||
});
|
||||
```
|
||||
|
||||
3. CommonJS style with npm:
|
||||
|
||||
```bash
|
||||
npm install konva
|
||||
```
|
||||
|
||||
```javascript
|
||||
// old way
|
||||
var Konva = require('konva');
|
||||
|
||||
|
||||
// modern way
|
||||
import Konva from 'konva';
|
||||
```
|
||||
|
||||
4. Minimal version:
|
||||
|
||||
If you are using webpack or browserfy you can use this approach to load only required Konva parts:
|
||||
```javascript
|
||||
import Konva from 'konva/src/Core';
|
||||
|
||||
|
||||
import 'konva/src/shapes/rect';
|
||||
//now Konva.Rect is available to use
|
||||
```
|
||||
|
||||
5. NodeJS
|
||||
|
||||
Here you have to install some deps by youself.
|
||||
|
||||
We are using [node-canvas](https://github.com/LearnBoost/node-canvas) to create canvas element.
|
||||
|
||||
@ -77,6 +119,7 @@ We are using [node-canvas](https://github.com/LearnBoost/node-canvas) to create
|
||||
|
||||
See file `resources/nodejs-demo.js` for example.
|
||||
|
||||
|
||||
#Change log
|
||||
|
||||
See [CHANGELOG.md](https://github.com/konvajs/konva/blob/master/CHANGELOG.md).
|
||||
|
14
src/Core.js
Normal file
14
src/Core.js
Normal file
@ -0,0 +1,14 @@
|
||||
module.exports = require('./Global');
|
||||
|
||||
require('./Util.js');
|
||||
require('./Canvas.js');
|
||||
require('./Context.js');
|
||||
require('./Factory.js');
|
||||
require('./Node.js');
|
||||
require('./Container.js');
|
||||
require('./Shape.js');
|
||||
require('./Stage.js');
|
||||
require('./BaseLayer.js');
|
||||
require('./Layer.js');
|
||||
require('./FastLayer.js');
|
||||
require('./Group.js');
|
Loading…
Reference in New Issue
Block a user