tldr/pages.zh/common/bower.md

34 lines
816 B
Markdown
Raw Blame History

This file contains ambiguous Unicode characters!

This file contains ambiguous Unicode characters that may be confused with others in your current locale. If your use case is intentional and legitimate, you can safely ignore this warning. Use the Escape button to highlight these characters.

# bower
> 前端 web 开发的包管理优化工具。
> 一个包可以是 GitHub 中 user/repo 的缩写,一个 Git 端口,一个 URL 链接或者一个已注册的包。
> 更多信息:<https://bower.io/>.
- 安装列在项目下 的 `bower.json` 文件中的依赖:
`bower install`
- 安装一个或者多个依赖到 `bower_components` 目录:
`bower install {{包名1}} {{包名2}}`
- 从本地的 `bower_components` 目录卸载依赖:
`bower uninstall {{包名1}} {{包名2}}`
- 列出本地包和可能的更新项:
`bower list`
- 显示 bower 指令的帮助信息:
`bower help {{指令}}`
- 创建你的项目的 `bower.json`
`bower init`
- 安装时候指定依赖的版本号,并添加到 `bower.json`
`bower install {{local_name}}={{package}}#{{version}} --save`