Introduction
Bower is a package manager for client side technologies. It can be used to search, install, uninstall web assets like JavaScript, HTML, and CSS.
Bower is pre-installed to your micro-server and so you can use its commands from your fully featured terminal.
Install packages
$ bower install <package>
A package can be a GitHub shorthand, a Git endpoint, a URL, and more. Read more about bower install.
# registered package
$ bower install jquery
# GitHub shorthand
$ bower install desandro/masonry
# Git endpoint
$ bower install git://github.com/user/package.git
# URL
$ bower install http://example.com/script.js
More Info
You can find further information about Bower here .