An open API service indexing awesome lists of open source software.

https://github.com/yuki-torii/yuki-createjs

⛩ yuki-createjs
https://github.com/yuki-torii/yuki-createjs

createjs yuki

Last synced: about 1 month ago
JSON representation

⛩ yuki-createjs

Awesome Lists containing this project

README

        

# yuki-createjs
⛩ Install createJS by npm

## Libs
- [easeljs-0.8.2.combined.js](https://github.com/CreateJS/EaselJS)
- [preloadjs-0.6.2.combined.js](https://github.com/CreateJS/PreloadJS)
- [soundjs-0.6.2.combined.js](https://github.com/CreateJS/SoundJS)
- [tweenjs-0.6.2.combined.js](https://github.com/CreateJS/TweenJS)

## Install
```bash
$ yarn add yuki-createjs
# or
$ npm install yuki-createjs --save
```

## Usage

### Include all
```js
import 'yuki-createjs'
// or
require('yuki-createjs')

// then
console.log(createjs) // <- Global 🍻
```

### Just one
```js
import 'yuki-createjs/lib/preloadjs-0.6.2.combined'
// or
require('yuki-createjs/lib/preloadjs-0.6.2.combined')

// then 🍻
var preload = new createjs.LoadQueue()
```