February 2019
Beginner
694 pages
18h 4m
English
One of the benefits of writing applications in Backbone is that the framework itself does not have many dependencies. To run a Backbone application, we need to have loaded the Underscore library, the jQuery library (or equivalent), and the Backbone framework itself. Once these libraries have been loaded into our browser, we just need to include all of the files that we have written for the application. By way of an example of this, let's take a look at the <head> tag in our index.html file as follows:
<head> <link rel="stylesheet" type="text/css" href="./node_modules/bootstrap/dist/css/bootstrap.css"> <script src="./node_modules/underscore/underscore.js"></script> <script src="./node_modules/jbone/dist/jbone.js"></script> <script ...
Read now
Unlock full access