S.O.L.I.D. Principle:
https://en.wikipedia.org/wiki/SOLID_(object-oriented_design) Following this
enables a Ports & Adapters arch, and also testing. This is my religion when
it comes to writing code.
3 replies
I like to evolve an solution through loosely coupling components, which in the
end are microservices. The best explanation for this approach I found in "REST
in Practice" http://shop.oreilly.com/product/9780596805838.do
Since we are implementing code in JavaScript, I am really missing a good book on
good first principles in this language. We have fantastic books for JavaScript
syntax and features, Promises etc. But I'm not aware of a book doing
Architecture Archaeology in JavaScript projects.
This might be due to that fact that this language is running on everything,
everywhere and every environment has it's specific properties which you need to
cater for.