html5/js game engine
Install with npm
$ npm install --save highfive.js
Add a <script>
to your index.html
<script src="node_modules/highfive.js/dist/highfive.js"></script>
to reference a minified version use node_modules/highfive.js/dist/h5-min.js
instead.
To directly work with the source files, you can copy all given <script>
tags from node_modules/highfive.js/dist/index.html
.
highfive.js/
├── dist/
│ ├── h5-min.js
│ ├── highfive.js
│ └── index.html <-- all script references to 'src/' files
└── src/
- Download releases from https://github.com/raphaelstary/highfive.js/releases
- Clone the repo:
git clone https://github.com/raphaelstary/highfive.js.git
and start withexample/helloworld/