Reading the code of real production projects. How to find?

I really like the idea of ​​reading other people to improve my design skills. Open source can help here.

This can teach you the basic principles of OO. But I do not write frameworks , I write code for real clients with rather complicated domain logic.

There are many guides on various MVC frameworks (for example, Create a blog with Ruby on rails in 15 minutes ). But hey, it’s very difficult to tinker with a small pet project.

How can I get the opportunity to read real production code associated with complex business domain logic?

I am interested in any MVC frameworks (any languages).

+3
source share
2 answers

ASP.NET quickly offers a fairly extensive case study of MVC implementation at the end of the book.

+1
source

Django is an object-oriented and MVC-based framework written in Python. Chapter 5: Models of the Free Book Django explains the MVC pattern for Django.

Also see this SO question .

+1
source

Source: https://habr.com/ru/post/1723544/


All Articles