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

The different kinds of JavaScript project


JavaScript, as a very versatile language, made its way through the different stages of development. Originally conceived as a way to enable more dynamic behavior in the browser, it has conquered not only the complex field of developing, almost thick with client-like applications using the browser as the platform and runtime, but it is now also seen in server-side applications most prominently using Node.js.

Going all the way from making a document look more interactive by incorporating effects, to rendering a whole application on the client side is a wide spectrum of complexity and applications. Some may warrant an approach with a larger focus on application-design, some might best be served by smaller script-like approaches keeping the logic simple and local for the best maintenance.

Enhancing the user experience

Many business applications are perfectly well served by an application comprised of a number of pages all rendered on the server side. For...