Logo Questions Linux Laravel Mysql Ubuntu Git Menu
 

how to use bower in existing project?

just starting out with bower and angularjs , how can I download all the dependencies for my project. It contains a bower.json file and bowerrc file? which command do I run from the root?

like image 429
user603007 Avatar asked Apr 16 '14 00:04

user603007


1 Answers

From the documentation:

Using the dependencies listed in the current directory's bower.json

bower install

If you haven't installed bower, you'll need to do that first:

npm install -g bower

If you haven't installed node and npm you'll need to do that before you do anything:

How to install Node.js

like image 185
net.uk.sweet Avatar answered Oct 13 '22 09:10

net.uk.sweet