bower安裝jquery jquery
方式一:git
bower install jquerygithub
會在當前目錄下安裝jquery,jquery會放在bower_components文件夾中,bower的全部安裝管理文件都在這個文件夾中npm
方式二:git 短語json
圖片中紅框部分就是git短語,安裝方式ui
bower install jquery/jqueryurl
方式三:spa
項目完整的github地址代理
安裝方式: bower install https://github.com/jquery/jquery.gitcomponent
方式四:經過url
安裝方式:bower install https://github.com/jquery/jquery/blob/master/build/tasks/lib/spawn_test.js
http://bower.io/search/ bower 目前的全部支持包
若是隻看 某個做者的:加上 owner:author 好比:
jquery owner:jquery 只看jquery做者的jquery
bower install 會查找當前目錄的bower.json
如何生成bower.json
當前目錄執行bower init 安裝需求完成 提示 會自動生成一個 bower.json
若是須要安裝到devDependencies和dependencies
npm install jquery --save 會同步到dependencies
npm install jquery --save-dev 會同步到devDependencies
.bowerc 文件是bower自己的配置也是json格式的,好比:
{
"directory":"bower_components", //bower 安裝問價路徑
"proxy":"http://proxy.tencent.com:8080",
"https-proxy":"https://proxy.tentcent.com:8080",//代理
time:"6000" //超時
}