A JavaScript port of Ash Framework, an Actionscript 3 entity framework for game development
Ash Framework is a high-performance entity system framework for game development, developed by Richard Lord in ActionScript 3.
For more in-depth introduction and examples, please check out its official page at http://www.ashframework.org.
- All core classes from the original Ash Framework are ported
- Signal system from JS-Signal
- A utility class for simple Class Inheritance
On folder build
, you can found the built & ready-to-use library file.
There are two versions you can choose from:
ash.js
, the un-minified version, good for development & debuggingash.min.js
, the minified version, good for release
You can use the library file as inline script (by using script tag on your HTML file) or using AMD (e.g RequireJS).
This library uses Grunt for building.
- Node.js
- Grunt's CLI installed using
npm install -g grunt-cli
- Go to
ash-js
folder & donpm install
. This will automatically download & install the required modules for building the library - Additionally, you might want to have PhantomJS installed on your system to enjoy automatic unit testings. However, you don't have to install PhantomJS and can still do unit testing directly from your browser (see instruction below).
grunt
will run jshint, build your library files (both minified & non-minified version), and do automatic unit testings using PhantomJSgrunt requirejs:compile
if you just want to buildash.js
(non-minifed version) and skip the unit testinggrunt requirejs:minifed
if you just want to buildash.min.js
(minified version) and skip the unit testing
You can still do unit testing without having PhantomJS installed on your system.
- Do
grunt connect
to start a local webserver. - From your browser, go to
http://localhost:9001/test/
and manually click each html files there.
List of unit test files:
- runner.html : test each Ash Framework module separately
- test_build.html : test the build version
build/ash.js
as inline script ( WIP ) - test_build_min.html : test the minified & build version
build/ash.min.js
as inline script ( WIP ) - test_build_require.html : test the build version
build/ash.js
with requirejs ( WIP ) - test_build_min_require.html : test the minified & build version
build/ash.js
with requirejs ( WIP )
- Ashteroids, a simple asteroids: https://github.com/brejep/ashjs-asteroids-example
MIT License