Next lesson playing in 5 seconds

Cancel
  • Overview
  • Transcript

2.1 Backbone Application Setup

We’ll start our Backbone application by installing the necessary libraries. These include Backbone, Underscore, and jQuery.

Note

In order to install your Bower components to the public/lib directory as Andrew has done, you'll need to create a .bowerrc file with the following contents.


    {
        "directory": "public/lib"
    }

Related Links