Skip to content

touchX/playable.js

 
 

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

playable.js · Build Status Version License

A lightweight HTML5 game engine.

Installation

Webpack/Browserify

$ npm install playable.js

Direct <script> Include

Simply download and include with a script tag. playable will be registered as a global variable.

CDN

<script src="https://cdn.jsdelivr.net/npm/playable.js/dist/playable.min.js"></script>

You can browse the source of the NPM package at cdn.jsdelivr.net/npm/playable.js.

Examples

let stage = new playable.Stage();
let text = new playable.Text('Hello playable.js');
stage.addChild(text);

Documentation

Check out the documentation here.

Packages

No packages published

Languages

  • TypeScript 99.4%
  • JavaScript 0.6%