-
Notifications
You must be signed in to change notification settings - Fork 3.8k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Reduce packages coupling #7767
Comments
I had a look at the Band Protocol code, and it seams that they found fine design for to packages organization and app creation. |
Would you like to elaborate @robert-zaremba?
What is "core"? |
Ideally, core should be self contained. I a significant amount of time in #7318. Moving things creates new import cycles. Also, there are many structures related to auth which are spanned across packages. This caused some hacks in the SDK. Similarly Finally, we mix a testing functions in the production packages. I already cleaned some parts when doing the |
Yes, as much as possible! What does Band do differently that you'd like to adopt? |
It feels less messy then the |
part of app wiring we are doing now |
Summary
This is a meta issue to track and solve tight coupling between packages, notably:
x/*
Description
Coupling is a source of the evil in many projects. Though it is helpful at the beginning, because we put things together and can iterate faster. Once the project grows and goes out of few packages level coupling start to be problematic. Usually the bigger a project is, the worse effect of coupling we have. The problems grow exponentially, because one change can induce a waterfall of other changes or even problems.
Items
amino
codec instances Remove globalamino
codec instances #7310For Admin Use
The text was updated successfully, but these errors were encountered: