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
- Host: GitHub
- URL: https://github.com/yuki-torii/yuki-createjs
- Owner: yuki-torii
- License: mit
- Created: 2017-02-28T07:25:55.000Z (over 8 years ago)
- Default Branch: master
- Last Pushed: 2017-02-28T23:23:59.000Z (over 8 years ago)
- Last Synced: 2025-04-22T01:48:48.005Z (about 2 months ago)
- Topics: createjs, yuki
- Language: JavaScript
- Size: 210 KB
- Stars: 27
- Watchers: 1
- Forks: 3
- Open Issues: 2
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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()
```