thiagoolsilva / tiktaktoe

Tik Tak Toe game uses the concepts of Clean Architecture, CI, Tests, Lerna, Yarn Workspace, Dependency Injection, and SOLID.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Welcome to tiktaktoe πŸ‘‹

Version Documentation Maintenance License: APACHE--V2 Twitter: thiagoolsilva

Tik Tak Toe Game is a monorepo that contains the game core and CLI project with clean architecture, dependency injection, SOLID, tests, webpack and etc...

🏠 Homepage

Why Clean Architecture?

Warning: This section wasn't wrote by me since I got it from (clean-architecture-example) github that explain in details about the concept of clean architecture. Please you should give it a try and go to it and read the article/code. Thanks (mattia-battiston) to share your content to the community.

The center of your application is not the database. Nor is it one or more of the frameworks you may be using. The center of your application is the use cases of your application - Unclebob (source)

Clean architecture helps us solve, or at least mitigate, these common problems with architecture:

  • Decisions are taken too early, often at the beginning of a project, when we know the least about the problem that we have to solve
  • It's hard to change, so when we discover new requirements we have to decide if we want to hack them in or go through an expensive and painful re-design. We all know which one usually wins. The best architectures are the ones that allow us to defer commitment to a particular solution and let us change our mind
  • It's centered around frameworks. Frameworks are tools to be used, not architectures to be conformed to. Frameworks often require commitments from you, but they don’t commit to you. They can evolve in different directions, and then you’ll be stuck following their rules and quirks
  • It's centered around the database. We often think about the database first, and then create a CRUD system around it. We end up using the database objects everywhere and treat everything in terms of tables, rows and columns
  • We focus on technical aspects and when asked about our architecture we say things like β€œit’s servlets running in tomcat with an oracle db using spring”
  • It's hard to find things which makes every change longer and more painful
  • Business logic is spread everywhere, scattered across many layers, so when checking how something works our only option is to debug the whole codebase. Even worse, often it's duplicated in multiple places
  • Forces/Encourages slow, heavy tests. Often our only choice for tests is to go through the GUI, either because the GUI has a lot of logic, or because the architecture doesn't allow us to do otherwise. This makes tests slow to run, heavy and brittle. It results in people not running them and the build beind broken often
  • Infrequent deploys because it's hard to make changes without breaking existing functionalities. People resort to long-lived feature branches that only get integrated at the end and result in big releases, rather than small incremental ones

Clean architecture gives us all these benefits:

  • Effective testing strategy that follows the testing pyramid and gives us a fast and reliable build
  • Frameworks are isolated in individual modules so that when (not if) we change our mind we only have to change one place, with the rest of the app not even knowing about it
  • Independent from Database, which is treated just like any other data provider. Our app has real use cases rather than being a CRUD system
  • Screaming architecture a.k.a. it screams its intended usage. When you look at the package structure you get a feel for what the application does rather than seeing technical details
  • All business logic is in a use case so it's easy to find and it's not duplicated anywhere else
  • Hard to do the wrong thing because modules enforce compilation dependencies. If you try to use something that you're not meant to, the app doesn't compile
  • We're always ready to deploy by leaving the wiring up of the object for last or by using feature flags, so we get all the benefits of continuous integration (no need for feature branches)
  • Swarming on stories so that different pairs can easily work on the same story at the same time to complete it quicker
  • Good monolith with clear use cases that you can split in microservices later one, once you've learnt more about them

Of course, it comes at a cost:

  • Perceived duplication of code. Entities might be represented differently when used in business logic, when dealing with the database and when presenting them in a json format. You might feel like you're duplicating code, but you're actually favouring decoupling over DRY
  • You need interesting business logic to "justify" the structure. If all you do in your use case is a one-line method to read or save from a database, then maybe you can get away with something simpler

Install

./batect install

Core usage

This step will work in a typescript project.

yarn add @tiktaktoe/core

CLI usage

./batect start-game

or use the following code in a typescript project

yarn add  @tiktaktoe/ui

Minify javascript

./batect build

$output folder:

./packages/__bundle
β”œβ”€β”€ library-cli.js
β”œβ”€β”€ library-cli.js.map
β”œβ”€β”€ library.js
└── library.js.map

Run tests

./batect unit-testing

Check all available tasks

./batect --list-tasks

Build:
- build: Install all dependencies into docker volume
- clean: Clean project builds
- install: Build code
- version: Create a new version

Quality:
- audit: Check library vulnerability
- format-code: Format code
- lint: Run lint
- lint-fix: Run lint fix

general:
- start-game: Start local game tik tak toe

test:
- unit-testing: Run unit testing

API Core

export { Player, PositionAlreadyUsedException } from './cross-cutting/index';
export { PresentationFactory, GamePlay } from './presentation/index';
export { TikTakToePlay, TikTakToeWinner } from './model/type/game-types';
export { GameplayInterface } from './presentation/gameplay.interface';

Data Type

  • Player - It is a data model that represent the Player. (FirstPlayer, SecondPlayer and Not Played)
  • PositionAlreadyUsedException - Exception used to advise about a position already filled.
  • PresentationFactory - Factory used to create a gameplay
  • GamePlay - Gameplay implementation that contains all Use Cases of game.
  • TikTakToePlay - Play role of game
  • TikTakToeWinner - The winner object ata representation.
  • GameplayInterface - Gameplay interface.

Continuous Integration

The project uses github action to check tests and some configurations after created a pull request.

Dependency

Core

"reflect-metadata": "0.1.13",
"tsyringe": "4.6.0"

UI

"chalk": "4.1.2",
"table": "6.7.2"

Author

πŸ‘€ Thiago Lopes da Silva thiagoolsilva@gmail.com

🀝 Contributing

Contributions, issues and feature requests are welcome!
Feel free to check issues page. You can also take a look at the contributing guide.

Show your support

Give a ⭐️ if this project helped you!

πŸ“ License

Copyright Β© 2021 Thiago Lopes da Silva thiagoolsilva@gmail.com.
This project is APACHE--V2 licensed.


This README was generated with ❀️ by readme-md-generator

About

Tik Tak Toe game uses the concepts of Clean Architecture, CI, Tests, Lerna, Yarn Workspace, Dependency Injection, and SOLID.

License:Apache License 2.0


Languages

Language:TypeScript 86.6%Language:Batchfile 6.5%Language:Shell 4.7%Language:JavaScript 2.2%