├── LICENSE └── README.md /LICENSE: -------------------------------------------------------------------------------- 1 | MIT License 2 | 3 | Copyright (c) 2019 Hamid Faraji 4 | 5 | Permission is hereby granted, free of charge, to any person obtaining a copy 6 | of this software and associated documentation files (the "Software"), to deal 7 | in the Software without restriction, including without limitation the rights 8 | to use, copy, modify, merge, publish, distribute, sublicense, and/or sell 9 | copies of the Software, and to permit persons to whom the Software is 10 | furnished to do so, subject to the following conditions: 11 | 12 | The above copyright notice and this permission notice shall be included in all 13 | copies or substantial portions of the Software. 14 | 15 | THE SOFTWARE IS PROVIDED "AS IS", WITHOUT WARRANTY OF ANY KIND, EXPRESS OR 16 | IMPLIED, INCLUDING BUT NOT LIMITED TO THE WARRANTIES OF MERCHANTABILITY, 17 | FITNESS FOR A PARTICULAR PURPOSE AND NONINFRINGEMENT. IN NO EVENT SHALL THE 18 | AUTHORS OR COPYRIGHT HOLDERS BE LIABLE FOR ANY CLAIM, DAMAGES OR OTHER 19 | LIABILITY, WHETHER IN AN ACTION OF CONTRACT, TORT OR OTHERWISE, ARISING FROM, 20 | OUT OF OR IN CONNECTION WITH THE SOFTWARE OR THE USE OR OTHER DEALINGS IN THE 21 | SOFTWARE. 22 | -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- 1 | # Software Architecture Reading & Watching List 2 | 3 | Software architecture is the structure of software. Architecture can be planned upfront and/or emerge over time. It includes elements such as services, layers, components, relationships, technologies, standards, principles, conventions and constraints. Architecture can be evaluated based on business objectives in areas such as cost, functionality, reliability, maintainability and operability. In other words, a poor architecture can be costly, unreliable and difficult to maintain, operate, change and extend. The following are common software architecture terms. 4 | 5 | 6 | ## Articles 7 | 8 | - [The Difference Between Architecture and Design](https://codeburst.io/software-architecture-the-difference-between-architecture-and-design-7936abdd5830?source=bookmarks) 9 | - [SOLID Principles every Developer Should Know](https://blog.bitsrc.io/solid-principles-every-developer-should-know-b3bfa96bb688?source=bookmarks) 10 | - [10 Common Software Architectural Patterns in a nutshell](https://towardsdatascience.com/10-common-software-architectural-patterns-in-a-nutshell-a0b47a1e9013?source=bookmarks) 11 | - [30 Shared Principles for discussing Software Architectures](https://hackernoon.com/first-do-no-harm-30-principles-that-helped-me-avoid-fly-by-architecture-reviews-e8952ac632a?source=bookmarks) 12 | - [Scalable Web Development](https://towardsdatascience.com/scalable-web-development-d57a46a7f349) 13 | - [38 Actions and Insights to Become a Better Software Architect](https://blog.kai-niklas.de/posts/7-38-actions-and-insights-to-become-a-better-software-architect) 14 | 15 | 16 | ## Architectures and Patterns Explaination 17 | 18 | - [Event Driven Architecture Pattern](https://towardsdatascience.com/event-driven-architecture-pattern-b54fc50276cd) 19 | - [Layered Architecture Architecture Pattern](https://towardsdatascience.com/software-architecture-patterns-98043af8028) 20 | - [Understanding Microservices: From Idea To Starting Line](https://medium.com/free-code-camp/microservices-from-idea-to-starting-line-ae5317a6ff02) 21 | - [Micro-Frontend - Microservices in front-end](https://medium.com/@PepsRyuu/micro-frontends-341defa8d1d4) 22 | - [Serverless - the future of software architecture?](https://read.acloud.guru/serverless-the-future-of-software-architecture-d4473ffed864) 23 | 24 | 25 | ## Books 26 | 27 | - [Software Architecture Glossory](https://leanpub.com/isaqbglossary/read) 28 | - [Software Architecture for Developers - Volume 1 | Technical leadership and the balance with agility](https://leanpub.com/software-architecture-for-developers) 29 | - [Software Architecture for Developers - Volume 2 | Visualise, document and explore your software architecture](https://leanpub.com/visualising-software-architecture) 30 | - [Become a Better Software Architect 31 | ](https://bettersoftwarearchitect.com/) 32 | 33 | 34 | ## Courses 35 | 36 | ### Text Courses 37 | - [Software Architecture & Design Tutorial](https://www.tutorialspoint.com/software_architecture_design/key_principles.htm) 38 | - [The Path to Becoming a Software Architect](https://medium.com/@nvashanin/the-path-to-becoming-a-software-architect-de53f1cb310a) 39 | 40 | ### Video Courses 41 | - [Software Architecture | Coursera](https://www.coursera.org/learn/software-architecture) 42 | - [Software Architecture For The Enterprise Architect](https://www.udemy.com/software-architecture-for-the-enterprise-architect) 43 | - [Basics Of Software Architecture Design In Java](https://www.udemy.com/basics-of-software-architecture-design-in-java/) 44 | --------------------------------------------------------------------------------