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
0
votes
1 answer

Bower installation errors. How do I fix it?

$ npm install -g bower npm ERR! network getaddrinfo ENOTFOUND npm ERR! network This is most likely not a problem with npm itself npm ERR! network and is related to network connectivity. npm ERR! network In most cases you are behind a proxy or have…
0
votes
1 answer

Need to delete all bower components and do fresh bower install on every checkout

Every time I checkout a new branch, then switch back to the branch I was working on, I run into a long list of missing module errors in my JS console. The missing modules are all bower components. If I delete my bower_components folder, then do a…
Daniel Bogart
  • 1,295
  • 3
  • 18
  • 41
0
votes
1 answer

bower install package with custom directory structure

how to install js-package using bower with following directories structure: package-name ----version --------files by default directories structure is: bower_components ----package-name --------files after modifying .bowerrc { "directory":…
cetver
  • 11,279
  • 5
  • 36
  • 56
0
votes
1 answer

Bower is installed and in path, but not recognized

I have installed bower with npm and added the npm location to my path. But when I try to execute a bower command, I still get a bower is not recognized error message. I have no idea how to troubleshoot this.
pthalacker
  • 2,056
  • 3
  • 20
  • 37
0
votes
1 answer

Install components via Bower without SSL in ASP.NET 5 Starter Web project

Due to corporate proxy issues I am unable to download components via Bower using https. I know that normally you can get around this by adding "registry": "http://bower.herokuapp.com" to the .bowerrc file, but I can't seem to find it…
Justin XL
  • 38,763
  • 7
  • 88
  • 133
0
votes
1 answer

Grunt - Change bower components directory?

How do I change the bower_components directory to something custom when using grunt for development? I want to set a custom folder such as scripts for all my libraries.
Rutwick Gangurde
  • 4,772
  • 11
  • 53
  • 87
0
votes
1 answer

Bower Install Uses git protocol even after changing the configuration

I am trying to install components using Bower and I behind my company's proxy. Initially I got the following error, PS C:\App> bower instal l jquery bower not-cached git://github.com/jquery/jquery.git#* bower resolve …
Raajkumar
  • 857
  • 2
  • 13
  • 26
0
votes
0 answers

Issue with git when trying to "bower install ember-data"

I'm having a git issue (git ls-remote) when trying to bower install ember-data here is my trace bower ember-data#* cached git://github.com/components/ember-data.git#1.0.0-beta.10 bower ember-data#* …
Nikos
  • 7,295
  • 7
  • 52
  • 88
0
votes
1 answer

bower install 'dev' version of a package doesn't work

I intend to use a certain feature of angular-datatables, namely: creating filter input fields below individual columns. A demo. This feature is available only in the dev version of the package. I set "angular-datatables": "dev" version in my…
Nikolay Melnikov
  • 1,395
  • 1
  • 15
  • 25
0
votes
1 answer

Bower not install WordPress latest version

When I try to install WordPress using Bower bower install wordpress It installed version 3.9.2. But I need version 4.0 because I want to configure language before install WordPress.
marcelo2605
  • 2,734
  • 4
  • 29
  • 55
0
votes
2 answers

Bower, Grunt on Ubuntu 12.04 - command not found

I've installed bower and grunt on my machine but non of it works. I get :command not found for both. I've placed paths to bower and grunt in .bash_profile file, like: export PATH="/home/user/.node/lib/node_modules/grunt-cli/bin:$PATH" export…
mintaras
  • 301
  • 3
  • 11
0
votes
1 answer

run bower install for target bower.json file

Assume that my working directory is c:\foo\ during the script execution. I would like run bower from there for c:\foo\bar\bower.json file. This is available on npm by running npm install --prefix c:\foo\bar. Is there any equivalent command in…
tugberk
  • 57,477
  • 67
  • 243
  • 335
0
votes
1 answer

Git/Bower Issue Error: bad line length character

I cannot install jquery or any other package from bower. If I use the direct git command (below), it works fine. git ls-remote --tags --heads git://github.com/jquery/jquery.git Bower has no issues on my server, but on my client dev machine, bower…
Ben_Coding
  • 398
  • 6
  • 17
0
votes
1 answer

Best practice for front end library management using Bower

I want to use bower add manage my library, my question is along with the js files, it always comes with some extra json or git related files. I don't want to push those files to the client, is there a recommended way rather than extract js filed…
9blue
  • 4,693
  • 9
  • 29
  • 43
0
votes
1 answer

Distribute a compiled JavaScript library using Bower and Grunt

I've released for the first time a JavaScript library using Bower (https://github.com/daveoncode/angular-ngkit), but since I'm not versioning compiled files (it sounds to me an huge bullshit despite I seen such approach for other repositories), user…
daveoncode
  • 18,900
  • 15
  • 104
  • 159