DEV Community

Discussion on: How Do You Automate Your Boilerplate?

 
brandinchiu profile image
Brandin Chiu

This is for our backend projects, so package size typically isn't so much an issue.

Additionally, our use of dependency injection patterns makes our services fairly efficient.

From a use perspective, we typically only include functionality that is shared amongst all of our other Microservices. We've purposely designed our applications to promote interoperability.

Thread Thread
 
m_nevin profile image
Marc Nevin

Sounds really sustainable, this seems like it'll be a longer-term goal for us but could have some big payoffs,

Thanks for sharing!