-
Notifications
You must be signed in to change notification settings - Fork 0
Home
Phaser Seed Based project. Main idea is to give a professional game skeleton with all the necessary stuff
Project is based on Angular-seed . But it not work with angularjs.
This project contains Phaser installed and preconfigured with a game screen showing a message.
The seed skeleton has different components that are very useful.
The skeleton comes with RequireJS configured. This will be useful to handle the load of JavaScript libraries that you will be using throughout your entire project.
Bower is a package manager for web projects. Bower very general use in our project to include libraries we need at the time.
nodejs is included to run our project, and the CLI toolkit it offers.
For example we used to start our project through the npm install
command
or also to perform karma-jasmine through the npm test
command
A project can have many files javascript code .... arguably only 15 files sources to handle the UI of your project. With Grunt we can run tasks on the source compiled to decrease the weight that they put on the project.
Each professional project implements testing on the code to ensure proper operation. Here we use Karma and Jasmine. Both technologies will make test of our game even taking into account RequireJS.