Questions tagged [bower-install]

Bower is a package manager for the web.

Bower is a package manager for the web. It offers a generic, unopinionated solution to the problem of front-end package management, while exposing the package dependency model via an API that can be consumed by a more opinionated build stack. There are no system wide dependencies, no dependencies are shared between different apps, and the dependency tree is flat.

Bower runs over Git, and is package-agnostic. A packaged component can be made up of any type of asset, and use any type of transport (e.g., AMD, CommonJS, etc.).

Home: http://bower.io/

351 questions
5
votes
1 answer

How to do a minimal install using Bower

I'm using Bower to manage all the front end libraries and tools I'm using for a project. My bower.json file looks like this { "name": "New Project", "version": "0.1.0", "dependencies": { "jquery": "~1.11.1", "bootstrap": "~3.3.4" …
Pattle
  • 5,983
  • 8
  • 33
  • 56
5
votes
1 answer

SELF_SIGNED_CERT_IN_CHAIN error when installing bower components

Error while installing bower components, the following error is thrown Request to https://bower.herokuapp.com/packages/ember failed: SELF_SIGNED_CERT_IN_CHAIN.
Vinoth Kumar
  • 1,347
  • 1
  • 14
  • 23
5
votes
2 answers

Bower install CERT_UNTRUSTED Error

I got the CERT_UNTRUSTED when I tried to run bower install command to install components. For example, I got this error when I ran the following: bower install bootstrap-sass-official --save The output was: bower error…
Vijey
  • 6,536
  • 7
  • 43
  • 50
5
votes
3 answers

How do I add the stripe.js to an ember-cli app?

First I included the stripe.js file via bower: bower install --save stripe.js=https://js.stripe.com/v2/ Which created "vendor/stripe/index" (note not index.js, but index). Then I added this to my broccoli…
Jim Barrows
  • 3,634
  • 1
  • 25
  • 36
4
votes
1 answer

bower ENORESTARGET No tag found issue

I'm having a problem with installing bower bootstrap material design dependencies, that dependencies installing failed for me on bootstrap material design version 0.5.10 , it shows a ENORESTARGET No tag found that was able to satisfy ^0.5.10 error…
4
votes
1 answer

Bower cannot find a package and fails to install new packages

So I installed via bower - jQuery UI Sortable. The package's folder was put right in my assets folder as expected. Then I wanted to install another package (for example: noty.js with bower install --save noty) and I get this: bower noty#* …
Ivanka Todorova
  • 9,964
  • 16
  • 66
  • 103
4
votes
1 answer

Installing bootstrap using bower-installer

I am trying to install bootstrap 3.3.5 in my solution using bower-installer... I want to pull just distribution files (in dist folder) instead of everything that you get by doing bower install bootstrap#3.3.5. However, bower.json in bootstrap 3.3.5…
nikib3ro
  • 20,366
  • 24
  • 120
  • 181
4
votes
2 answers

Failed to run task: 'bower --allow-root install' failed

I am trying to build Apache zeppelin from the source code. But it breaks at the "zeppelin-web" with the following error [ERROR] Failed to execute goal com.github.eirslett:frontend-maven-plugin:0.0.23:bower (bower install) on project zeppelin-web:…
Minudika
  • 851
  • 6
  • 23
4
votes
1 answer

bower fails with 'ENOTFOUND getaddrinfo ENOTFOUND vox.spacefiles'

Bower install seems to be consistently failing for multiple packages for me. I've tried removing the below (nestable) package mention and it then fails for others. I've tried setting the git settings - git config --global…
sppc42
  • 2,994
  • 2
  • 31
  • 49
4
votes
4 answers

How to install bower on centos 7

I am trying to install bower on centos7, after installing nodejs. To install nodejs I follows these steps Step1: wget http://nodejs.org/dist/v0.10.30/node-v0.10.30.tar.gz Step2: tar xzvf node-v* && cd node-v* Step3: sudo yum install gcc…
geeks
  • 2,025
  • 6
  • 31
  • 49
4
votes
1 answer

Can/should Grunt be used with Bower without Npm?

I am a little confused about the use of Npm, Bower and Grunt. My objective is to install frontend packages (e.g.: bootstrap) for my front-end project and have Grunt set up to automate build tasks. I have been using Npm in the past and I understand…
Crocodile
  • 5,724
  • 11
  • 41
  • 67
4
votes
4 answers

Bower Install error: Unable to connect & exit code of #128

I am facing an issue on bower install. bower ECMDERR Failed to execute "git ls-remote --tags --heads HTTPS_LINK to bower-angular-mocks.git", exit code of #128 I followed suggestions mentioned in Git / Bower Errors: Exit Code # 128 &…
Satish
  • 41
  • 1
  • 4
4
votes
1 answer

Why does bower install github/repo not clone my bower.json?

When I install a library from a git repo via: bower install git@github.com:fabiantheblind/p5.js.git --save the component gets cloned into my bower_components but there is no bower.json in the folder. Just a .bower.json. Why is that so and how…
fabianmoronzirfas
  • 4,091
  • 4
  • 24
  • 41
4
votes
1 answer

Installing/Using Bower on Uberspace with NPM

Hi I use uberspace and installed ghost there. Ghost uses npm. If I try: npm install -g bower It doesn't install it and throws a lot of erros messages what makes sense because the server is shared between many users. sudo npm install -g…
Andi Giga
  • 3,744
  • 9
  • 38
  • 68
4
votes
1 answer

how to isolate dependencies in bower

I recall reading somewhere that in bower you can install packages as subtrees, meaning that one project can use multiple versions of the same library.. with each version of the library acting as a dependency for other libraries that need the…
abbood
  • 23,101
  • 16
  • 132
  • 246