Skip to the article

I'm Fernando,
a full-stack developer!

From-scratch Articles

When you start with React, it is common that you just start a project with the CRA tool. While this quickly makes a project, it also does lots of magic in the background to make it work. For learning purposes, it can be better to write your own configuration to build a react application.

Creating small Javascript games is a great way to learn coding. So I make another breakout game. This time I used Ecmascript Modules and classes. The core design of this breakout is an event bus architecture. Every entity can throw an event, which affects the game in a certain way.For example, the score reducer listens to the brick destroyed event to handle updating the score. The powerup entity…

Creating small Javascript games is a great way to learn coding. As part of learning, I developed a breakout game. This game features a level selection screen, which generates levels based on some math. This game used the module pattern to connect all the components together.