How to use the gazebo in an 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 a bowerrc file? which command am I running from the root?

+4
source share
1 answer

In the documentation:

Using the dependencies listed in the current bower.json directory

bower install

If you have not installed the gazebo, you need to do this first:

npm install -g bower

If you have not installed node and npm, you need to do this before doing anything:

How to install Node.js

+5
source

Source: https://habr.com/ru/post/1536692/


All Articles