8 Matching Annotations
- Feb 2021
-
trailblazer.to trailblazer.to
-
The entire framework is based on small, clean Ruby structures that can be executed programmatically.
-
- Nov 2020
-
medium.com medium.com
-
If you are working in a large enterprise application, we have to create small components. Small components are much more flexible in terms of reusability and maintainability.
-
- Oct 2020
-
www.basefactor.com www.basefactor.com
-
Industrialization: You can easily chop your form validations into smaller independent pieces that can be developed by separate teams in paralell with no dependencies.
-
-
medium.com medium.com
-
But for big projects it should work out to just apply this techniques to certain sub-folders in your project where this problems occurs, as-if they are stand alone libraries.
-
-
-
When I say that my experience is that it means it's time to split up your components, I guess I mean that there tends to be a logical grouping between all the things that care about (for example) sqr_n, and in Svelte, logical groupings are expressed as components.
-
-
-
Since re-rendering in Svelte happens at a more granular level than the component, there is no artificial pressure to create smaller components than would be naturally desirable
-
- Sep 2020
-
medium.com medium.com
-
Many people recently are complaining about bundler performance. But I don’t think any tool is going to solve performance problems. Bundlers can try innovative ideas such as multi-threading and improved caching, but you’re always going to hit a limit. If you’re having performance problems, it’s more likely because you’re not keeping tabs of what you’re importing, and haven’t considered splitting your project into multiple projects.
-
-
rollupjs.org rollupjs.orgRollup1
-
Developing software is usually easier if you break your project into smaller separate pieces, since that often removes unexpected interactions and dramatically reduces the complexity of the problems you'll need to solve
-