https://github.com/tupizz/clean-code-clean-architecture-course
course from @rodrigobranas clean code and architecture course
https://github.com/tupizz/clean-code-clean-architecture-course
Last synced: 2 months ago
JSON representation
course from @rodrigobranas clean code and architecture course
- Host: GitHub
- URL: https://github.com/tupizz/clean-code-clean-architecture-course
- Owner: tupizz
- Created: 2022-06-28T02:26:18.000Z (almost 3 years ago)
- Default Branch: main
- Last Pushed: 2022-07-11T14:22:30.000Z (almost 3 years ago)
- Last Synced: 2025-02-09T14:47:30.035Z (4 months ago)
- Language: TypeScript
- Homepage:
- Size: 99.6 KB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: readme.md
Awesome Lists containing this project
README
# Introduction
- Have developed a more critical and professional look at software development, raising its level of maturity
- Know how to apply several Clean Code and Refactoring techniques to make the code cleaner and more understandable
- Learn about various Design Patterns and understand how they can help create more decoupled and maintainable code
- Understand how to develop using Test Driven Development
- Master the principles of Object Oriented Programming
- Learn to structure your application's architecture using ports and adapters, clean architecture and domain-oriented design
- Learn about Event Sourcing and CQRS to implement event-driven features
- Understand the principles of Event Oriented Architecture
- Understand SOLID once and for all
- See in practice the difference between MVC, MVP and MVVM
- Become a much more confident person in your day to day work, in job interviews, especially if you are looking to leverage your career
- Seek to foster a work environment based on quality within your team
- For sure, even if you have no experience with JavaScript and TypeScript, you will come out mastering the main concepts of the language# Quick reference
```bash
yarn add typescript jest @types/jest ts-node ts-jest
npx tsc --init
npx ts-jest config:init
npx jest --watchAll
```