Book Image

Backbone.js Patterns and Best Practices

By : Swarnendu De
Book Image

Backbone.js Patterns and Best Practices

By: Swarnendu De

Overview of this book

Table of Contents (19 chapters)
Backbone.js Patterns and Best Practices
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Precompiling Templates on the Server Side
Index

Summary


This chapter dealt with one of the most important topics of Backbone.js-based application development. At the framework level, learning Backbone is quite easy and developers get a complete grasp over it in a very short period of time. Developing simple applications with a few pages never seems to be an issue. But when it comes to a large complex application, laying out the architecture becomes quite confusing, with what to include and what not to. In this chapter, we tried to discuss every point associated with the app's architecture and mentioned when and why you should use a particular pattern. Moreover, most of these patterns are applied to a number of large applications with success. So, you can adopt these concepts without any hesitation.

Until this chapter, we talked about almost everything related to Backbone.js application development. However, no project is complete without proper testing, and that is what we are going to learn in our next and final chapter, Chapter 8, Unit...