Command line reference
$ bower cache <command> [<args>]
Manage bower cache
$ bower cache clean $ bower cache clean <name> [<name> ...] $ bower cache clean <name>#<version> [<name>#<version> ..]
Cleans cached packages
$ bower cache list $ bower cache list <name> [<name> ...]
Lists cached packages
$ bower help <command>
Display help information about Bower
$ bower home $ bower home <package> $ bower home <package>#<version>
Opens a package homepage into your favorite browser.
If no <package>
is passed, opens the homepage of the local package.
$ bower info <package> $ bower info <package> [<property>] $ bower info <package>#<version> [<property>]
Displays overall information of a package or of a particular version.
$ bower init
Interactively create a bower.json file
$ bower install [<options>] $ bower install <endpoint> [<endpoint> ..] [<options>]
Installs project dependencies recursively.
Project dependencies consist of:
dependencies
specified in bower.json
of projectbower.json
, but present in bower_components
<endpoint>
passed as an argument to this commandWhen --save
flag is used, all additional endpoint are saved to dependencies
in bower.json
.
Bower recommends to always use --save
flag to achieve reproducible installs between machines.
Endpoints can have multiple forms:
<package>
<package>#<version>
<name>=<package>#<version>
Where:
<package>
is a package URL, physical location or registry name<version>
is a valid range, commit, branch, etc.<name>
is the name it should have locally.<package>
can be any one of the following:
Registered package name | jquery normalize.css |
Git endpoint | https://github.com/user/package.git [email protected]:user/package.git |
Git endpoint without .git | git+https://github.com/user/package git+ssh:[email protected]/user/package |
Local folder | my/local/folder/ |
Public Subversion endpoint | svn+http://package.googlecode.com/svn/ |
Private Subversion endpoint | svn+ssh://package.googlecode.com/svn/ svn+https://package.googlecode.com/svn/ |
Shorthand (defaults to GitHub) | user/package |
URL | http://example.com/script.js http://example.com/style.css http://example.com/package.zip (contents will be extracted)http://example.com/package.tar (contents will be extracted) |
A version can be:
semver version | #1.2.3 |
version range | #1.2 #~1.2.3 #^1.2.3 #>=1.2.3 <2.0 |
Git tag | #<tag> |
Git commit SHA | #<sha> |
Git branch | #<branch> |
Subversion revision | #<revision> |
-F
, --force-latest
: Force latest version on conflict-p
, --production
: Do not install project devDependencies-S
, --save
: Save installed packages into the project’s bower.json dependencies-D
, --save-dev
: Save installed packages into the project’s bower.json devDependencies-E
, --save-exact
: Configure installed packages with an exact version rather than semver$ bower link $ bower link <name> [<local name>]
The link functionality allows developers to easily test their packages. Linking is a two-step process.
Using ‘bower link’ in a project folder will create a global link. Then, in some other package, bower link <name>
will create a link in the components folder pointing to the previously created link.
This allows you to easily test a package because changes will be reflected immediately. When the link is no longer necessary, simply remove it with bower uninstall <name>
.
$ bower list [<options>]
List local packages and possible updates.
-p
, --paths
: Generates a simple JSON source mapping-r
, --relative
: Make paths relative to the directory config property, which defaults to bower_components$ bower lookup <name>
Look up a package URL by name
$ bower login
Authenticate with GitHub and store credentials.
-t
, --token
: Pass an existing GitHub auth token rather than prompting for username and password$ bower prune
Uninstalls local extraneous packages
$ bower register <name> <url>
Register a package
$ bower search $ bower search <name>
Finds all packages or a specific package.
$ bower update <name> [<name> ..] [<options>]
Updates installed packages to their newest version according to bower.json.
-F
, --force-latest
: Force latest version on conflict-p
, --production
: Do not install project devDependencies-S
, --save
: Update dependencies
in bower.json-D
, --save-dev
: Update devDependencies
in bower.json$ bower uninstall <name> [<name> ..] [<options>]
Uninstalls a package locally from your bower_components directory
-S
, --save
: Remove uninstalled packages from the project’s bower.json dependencies-D
, --save-dev
: Remove uninstalled packages from the project’s bower.json devDependencies$ bower version [<newversion> | major | minor | patch]
Run this in a package directory to bump the version and write the new data back to the bower.json file.
The newversion argument should be a valid semver string, or a valid second argument to semver.inc (one of “build”, “patch”, “minor”, or “major”). In the second case, the existing version will be incremented by 1 in the specified field.
If run in a git repo, it will also create a version commit and tag, and fail if the repo is not clean.
-m
, --message
: Custom git commit and tag messageIf supplied with --message
(shorthand: -m
) config option, bower will use it as a commit message when creating a version commit. If the message config contains %s then that will be replaced with the resulting version number. For example:
$ bower version patch -m "Upgrade to %s for reasons"
-f, --force
Makes various commands more forceful
bower install --force
re-installs all installed components. It also forces installation even when there are non-bower directories with the same name in the components directory. Adding --force
also bypasses the cache, and writes to the cache anyway.bower uninstall <package> --force
continues uninstallation even after a dependency conflictbower register <package> --force
bypasses confirmation. Login is still needed.-j, --json
Output consumable JSON
-l, --loglevel
What level of logs to report. Possible values: error, conflict, warn, action, info, debug
-o, --offline
Do not use network connection
-q, --quiet
Only output important information. It is an alias for --loglevel=warn
.
-s, --silent
Do not output anything, besides errors. It is an alias for --loglevel=error
. Silent is also useful if you have private components that might leak credentials to your CI environment.
-V, --verbose
Makes output more verbose. It is an alias for --loglevel=debug
.
--allow-root
Allows running commands as root. Bower is a user command, there is no need to execute it with superuser permissions. However, if you still want to run commands with sudo, use --allow-root
option.
You can use build tools to easily consume Bower packages.
If you use bower list --paths
or bower list --paths --json
, you will get a simple name-to-path mapping:
$ bower list --paths # or $ bower list --paths --json
{ "backbone": "bower_components/backbone/backbone.js", "jquery": "bower_components/jquery/dist/jquery.js", "underscore": "bower_components/underscore/underscore.js" }
Every command supports the --json
option that makes Bower output JSON. Command result is outputted to stdout
and error/logs to stderr
.
Bower provides a powerful, programmatic API. All commands can be accessed through the bower.commands
object.
var bower = require('bower'); bower.commands .install(['jquery'], { save: true }, { /* custom config */ }) .on('end', function (installed) { console.log(installed); }); bower.commands .search('jquery', {}) .on('end', function (results) { console.log(results); });
Commands emit four types of events: log
, prompt
, end
, error
.
log
is emitted to report the state/progress of the command.prompt
is emitted whenever the user needs to be prompted.error
will only be emitted if something goes wrong.end
is emitted when the command successfully ends.For a better idea of how this works, you may want to check out our bin file.
When using Bower programmatically, prompting is disabled by default. You can enable it when calling commands with interactive: true
in the config. This requires you to listen for the prompt
event and handle the prompting yourself. The easiest way is to use the inquirer npm module like so:
var inquirer = require('inquirer'); bower.commands .install(['jquery'], { save: true }, { interactive: true }) // .. .on('prompt', function (prompts, callback) { inquirer.prompt(prompts, callback); });
Bower will skip some interactive operations if it finds a CI
environmental variable set to true
. You will find that the CI
variable is already set for you on many continuous integration servers, e.g., CircleCI and Travis-CI.
You may try to set the CI
variable manually before running your Bower commands. On Mac or Linux, export CI=true
and on Windows set CI=true
If for some reason you are unable to set the CI
environment variable, you can alternately use the --config.interactive=false
flag.
$ bower install --config.interactive=false
Bower works by default in interactive mode. There are few ways of disabling it:
CI=true
in environment--config.interactive=false
to Bower commandbower install | cat
)bower install > logs.txt
)When interactive mode is disabled:
bower init
does not workbower register
bypass confirmationbower login
fails unless --token
parameter is providedbower install
fails on resolution conflicts, instead of asking for choicebower uninstall
doesn’t ask for confirmation if dependency is to be removedBower supports installing packages from its local cache – without an internet connection – if the packages were installed before.
$ bower install <package> --offline
The content of the cache can be listed with bower cache list
:
$ bower cache list
The cache can be cleaned with bower cache clean
:
$ bower cache clean
© 2016 Bower contributors
Licensed under the MIT License.
https://bower.io/docs/api