Web sites are made of lots of things — frameworks, libraries, assets, utilities, and rainbows. Bower manages all these things for you.
Bower works by fetching and installing packages from all over. Bower keeps track of these packages in a manifest file, bower.json.
$ npm install -g bower
Install packages with the following command:
$ bower install <package>
Bower installs packages to bower_components/
A package can be a GitHub shorthand, a Git endpoint, a URL, and more.
Update packages with the following command:
$ bower update
Please navigate to Search Bower packages
Save packages to bower.json with the following command:
$ bower init
Or
$ bower install --save <package>
--save
adds the package as a dependency in bower.json.