Skip to content
javierlog08 edited this page May 13, 2015 · 6 revisions

About

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.

Requirejs

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

Bower is a package manager for web projects. Bower very general use in our project to include libraries we need at the time.

Nodejs

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

Gruntjs

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.

Karma + Jasmine

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.

Clone this wiki locally