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
7
votes
3 answers

bower init command error (gitbash) in windows

When i run bower init in gitbash ,following error is displayed: bower ENOINT Register requires an interactive shell Additional error details: Note that you can manually force an interactive shell with --config.interactive
Kiran Saxena
  • 163
  • 2
  • 13
7
votes
2 answers

How to install Bootstrap v4 alpha using bower?

The v4-alpha documentation states Bootstrap v4.0.0-alpha is available for download in several ways, including some of your favorite package managers. however, the mentioned bower install bootstrap installs the latest stable release 3.3.5…
6
votes
1 answer

installing from bower repository from private gitlab repository

I try to install a bower repo i registered to my local private bower instance. The git host is a private gitlab instance. bower install bower-test is given me the error bower bower-test#* not-cached…
divramod
  • 1,454
  • 2
  • 20
  • 35
6
votes
1 answer

What's the best way to move packages from devdependencies to dependencies in bower.json?

I've been working on an angular project and whenever I wanted a new package, I edited bower.json manually and added the package to devdependencies and then ran bower install to get the dependency installed. I never really looked at the name of the…
richard
  • 12,263
  • 23
  • 95
  • 151
6
votes
1 answer

How can I use Bower as a package manager with Visual Studio 2013? I.e. I have a .NET project and want to add some packages uses Bower

How can I use Bower as a package manager with Visual Studio 2013? I.e. I have a .NET project and want to add some packages uses Bower. I read Scott Hanselman's post, but it's not clear. I installed the plugins. Do I use the package manager console?…
Hoppe
  • 6,508
  • 17
  • 60
  • 114
6
votes
5 answers

Visual Studio Online MSBuild fails when doing bower install

I have a simple web project with a bower.json, package.json and a Gruntfile.js I have modified my .csproj file to add targets to run npm install bower install grunt build npm install runs fine but it fails to run bower install. This is all that I…
Sujesh Arukil
  • 2,469
  • 16
  • 37
6
votes
1 answer

angular-route error Arguments to path.json must be strings

I am having a hard time figuring out what this error means. I have the following bower.json: ... "dependencies":{ "angular-route":"~1.2.18", "angular":"~1.2.18" } Upon installing my bower packages through bower install I get the following…
k88074
  • 2,042
  • 5
  • 29
  • 43
6
votes
1 answer

How to install bower package with a slash in the name?

I'm trying to install https://github.com/aterrien/jQuery-Knob through bower. In the bower.json file of the package I see: { "name": "aterrien/jQuery-Knob", "version": "1.2.9", .. } So in my bower.json file I put in: "aterrien/jQuery-Knob":…
user258598
  • 61
  • 3
5
votes
3 answers

package.json vs bower.json

What is the difference between package.json vs bower.json.? what is the criteria that we should consider before defining the dependencies in both files. And what difference will it make by running "bower install" and "npm install" ?
LearnAngular
  • 71
  • 2
  • 8
5
votes
2 answers

Unable to Install Bower Packages

I have a Cordova Application which is developed using Visual Studio 2015 IDE. To manage libraries and dependencies, I tried using NuGet. But it looks like, NuGet cannot manage client side scripts ie CSS. So I explored BOWER. I installed bower using…
Joseph
  • 1,060
  • 3
  • 22
  • 53
5
votes
2 answers

Error: Cannot find module 'js-yaml' when running "bower install"

I am walking through basic set up of an AngularJS application (Just getting started) and am currently trying to install Bower components for the application. When I run bower install from the terminal, I get the following error: Error: Cannot find…
ricky89
  • 1,326
  • 6
  • 24
  • 37
5
votes
1 answer

Dockerfile and issue making work bower install

Im trying to exec bower install on node:4.1.2 docker container from the dockerfile. Part of my dockerfile is like this: #Install bower to command line RUN npm install -g bower # Define the host folder that will contain the code WORKDIR…
kitimenpolku
  • 2,604
  • 4
  • 36
  • 51
5
votes
0 answers

Registering and Installing bower packages from GitLab

We have created a private repository in GitLab and we wanted to host our bower packages in there so that when user types bower install myprivatepackage it should pull the package form GitLab. This is the command I am typing to register the bower…
Anup Vasudeva
  • 871
  • 2
  • 12
  • 31
5
votes
1 answer

How to override "ignore" part of bower.json file of dependency?

I would like to use https://github.com/MrRio/jsPDF in my ember project. I wanted to import jsPDF as dependency, therefore I started this way: bower install git@github.com:MrRio/jsPDF.git --save Unfortunately, I cannot install files from plugins…
user3764429
  • 402
  • 2
  • 12
5
votes
1 answer

Ember : downgrading ember with bower install

I've been switching to the 1.13.2 version of ember on a git branch, and now I want to come back to 1.11.1 when going back to an other branch. I've been running npm install and bower install without failure. But when I run ember server I run into the…
Nicorr
  • 724
  • 6
  • 22
1 2
3
23 24