DEV Community

Discussion on: The Right Time For Abstractions

Collapse
 
venesseoss profile image
Vinicius Bernardo

Very interesting article, so, the guideline is: build some basic abstractions, but not too many. Start writing your code without worrying too much about them, and after you have some clear directions on your app/project, you make some refactors, providing better abstractions, right?

Collapse
 
pbeekums profile image
Beekey Cheung

That's basically it. A good way to determine whether you should build the abstraction is whether it involves business logic or not.