DEV Community

Cover image for Angular Phaser & Electron Integration Template
Tim B
Tim B

Posted on

 

Angular Phaser & Electron Integration Template

It has always been my dream to create a video game, and I'm starting to do some work with Phaser, as I am pretty familiar with typescript. I started a project and got some work done before figuring that I should strip back the assets and some implementation to provide a clean little template. I have a repo for it and thought I might share:

https://github.com/TBosak/game-template

Flexbox is one of my favorite web layout frameworks, so I included it in implementation as well. It should be super easy to implement a fantastic UI in a matter of hours.

The repo has gotten a lot of traffic, so I am considering a rename and branding to see how big I can make it. I'm working on fancy names and logos. Let me know what you think.

Top comments (0)

typescript

11 Tips That Make You a Better Typescript Programmer

1 Think in {Set}

Type is an everyday concept to programmers, but it’s surprisingly difficult to define it succinctly. I find it helpful to use Set as a conceptual model instead.

#2 Understand declared type and narrowed type

One extremely powerful typescript feature is automatic type narrowing based on control flow. This means a variable has two types associated with it at any specific point of code location: a declaration type and a narrowed type.

#3 Use discriminated union instead of optional fields

...

Read the whole post now!