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

Building your own Syapse


Your application might be, like Syapse, a serious tool designed to help with a critical problem such as fighting cancer. Alternatively, your application might be something more fun, like a game or personal project. In either case, Backbone offers everything you need to not just build your site but also continue adding to and maintaining the site over its entire lifetime.

However, no book can possibly explain every possible nuance of a library that is as flexible and as powerful as Backbone. At its core, Backbone strives to do only a few important things well and leaves everything else up to you, the programmer. This not only means a great deal of power and flexibility, but it also means that you have to make a large number of decisions for yourself as to how you want to use Backbone. To make the correct decisions, and truly take advantage of everything Backbone has to offer, you will no doubt want to continue learning as much as you can about both Backbone in particular...