This is a web based game. The entire “web site” is in the “src” folder; the initial starting point is the index.html file at the top of the directory.

We have a link to the complete game at:

https://www.7generationgames.com//follow-the-bubbles/

If you want to play the game directly from the files in “src”; well, if you want to do that you are probably someone who deals with web sites and knows how to do that already; if you aren’t one of those people we will tell you how to do it below.

Unfortunately, modern browsers don’t really allow you to run web apps from local files; they will allow you to open the index.html file but you won’t get any further than that since they disable many modern JavaScript features like modules.

The most straightforward way to do it is:

1) Download and install VS Code, a free open source editor and development environment
2) Run VS Code and install an extension called "Live Server"

You will then be able to run most web apps directly from local files, including our game!