February 2016
Beginner to intermediate
308 pages
5h 46m
English
Let's look at dependency management and how we can use it in our Ember projects.
Bower is used for dependency management for Ember CLI. Bower is a frontend tool that is used to help fetch and install packages that you might need.
bower.json file is located in the root folder of your project. It contains all the dependencies. Let's say that we want to install the Bootstrap library:
$ bower install bootstrap --save
This command will install bootstrap in the bower_components folder and save the package information in the bower.json file.
Ember add-ons
Another popular way of adding third-party libraries to Ember is using add-ons or addons as you sometimes see it. An add-on is Ember's way of sharing libraries ...
Read now
Unlock full access