Book Image

JavaScript Domain-Driven Design

Book Image

JavaScript Domain-Driven Design

Overview of this book

Table of Contents (15 chapters)
JavaScript Domain-Driven Design
Credits
About the Author
About the Reviewers
www.PacktPub.com
Preface
Index

Drawing knowledge


Object orientation and its specific forms are, of course, not the only influence we have, and not the only one we should have. Many different ways of developing software have been found to be useful and have value in the world of software development. Depending on the kind of system we want to build, it is not always the best even to model as objects.

There are very common ways that lend themselves nicely to specific problems, be it a more functional approach when faced with the problems of concurrency, or a more logical approach when trying to build a rule engine. All these kind of ways to approach a problem influence the way we think about a system, and the more different approaches there are in our toolbox, the better we can pick one that fits.

Tip

Naturally, certain approaches feel better for an individual; I, for example, don't fair well when faced with a purely functional, statically-typed approach that, for example, Haskell takes to developing software. I have a hard...