ebabel-library

Library of re-useable game functions to build web browser HTML5 games.


Keywords
games, library, javascript, es5, es6, game-development
License
GPL-3.0
Install
npm install ebabel-library@1.6.2

Documentation

ebabel-library

Library of re-useable game functions to build web browser HTML5 games.

Use for your own game

Install as dependency for your own game

Bower

bower install --save ebabel-library

or, npm

npm install --save ebabel-library

Usage in your own game

See demos for how to use this library.

This library can be used in ES5 or ES6+

randomNumber

// ES5
<script src="dist/ebabel-library.min.js.gz"></script>
<script>
  var result = window['ebabel-library'].randomNumber(6).toInt()
</script>
// ES6+
import { randomNumber } from 'ebabel-library';

const result = randomNumber(6).toInt();

License

This code is free to use for all purposes. For more details, see GNU General Public License, version 3.

Develop the library itself

For more details, see Contributing guidelines