DEV Community

Discussion on: 8 important things I learned as a software developer over a decade.

Collapse
 
deepu105 profile image
Deepu K Sasidharan

Yes there are always exclusions and special cases and yes using dependencies for trivial stuff like trip/leftpad etc can lead to bigger issues. The balance between using dependencies and building in-house needs to be decided on a per team per project basis IMHO. My normal take is that use a dependency for non business solutions and for technical stuff. For example use a HTTP library for building APIs rather than building one your self, as the libraries are much more mature and better at those tasks. In such a case adapting your solution to the library is a good thing as you will be following industry standard. But for business solutions and special cases you could always build in-house solutions

Collapse
 
lexlohr profile image
Alex Lohr

Maybe I should have rephrased that. The sign was meant to be "trying to adapt an external dependency that is not exactly solving the issue".

Thread Thread
 
deepu105 profile image
Deepu K Sasidharan

Absolutely true