Book Image

Backbone.js Essentials

By : Jeremy Walker
Book Image

Backbone.js Essentials

By: Jeremy Walker

Overview of this book

<p>This book offers insight into creating and maintaining dynamic Backbone.js web applications. It delves into the the fundamentals of Backbone.js and helps you achieve mastery of the Backbone library.</p> <p>Starting with Models and Collections, you'll learn how to simplify client-side data management and easily transmit data to and from your server. Next, you'll learn to use Views and Routers to facilitate DOM manipulation and URL control so that your visitors can navigate your entire site without ever leaving the first HTML page. Finally, you'll learn how to combine those building blocks with other tools to achieve high-performance, testable, and maintainable web applications.</p>
Table of Contents (20 chapters)
Backbone.js Essentials
Credits
About the Author
Acknowledgments
About the Reviewers
www.PacktPub.com
Preface
Index

Documentation approaches


There are three main approaches to documenting JavaScript code, none of which are a one-size-fits-all solution. You will need to determine which approach makes the most sense for you and your team on the basis of your team size and the ambitions of your project.

The three main approaches can be referred to as the non-documentation, simple documentation, and robust documentation approaches.

In general, the larger your team is, and the larger the organization to which this team belongs is, the more likely are you to want robust documentation, although size isn't the only factor to consider here. Other factors include your team members' desire for external documentation and whether or not any of your code is customer-facing (for instance, if you offer a public API for your customers to extend your application).