makenzibower 2015-11-12
bower can install with node.js
npm install -g bower
to add a new package to your project, you should run bower command as below:
bower install <package>
also you are able to be very easy to find out which packages are installed using list command
bower list
you can update the installed package using
bower update <package>
it is possible to remove multiple packages at once by listing the package names
bower uninstall <package> <package> ...