When it comes to installing dependencies, how do I determine whether to use NPM or Bower?
For example, what distinguishes npm install requirejs --save-dev
from
bower install requirejs --save-dev
?
Is there a recommended method, or any guidelines for making the decision?
Are there any other options that should be considered?