bower安装使用git安装node安装weui安装开发
Posted 风尘守望者
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了bower安装使用git安装node安装weui安装开发相关的知识,希望对你有一定的参考价值。
bower安装使用以及git安装
bower需要:node 和 git
1、Git安装:(选择第二项:Use Git from the Windows Command Prompt)
2、node安装:
3、确定,配置完毕,
打开cmd,输入node -v ,node -v ,v是version的意思,检查一下版本号,校验是否装成功了
4、安装bower:npm install -g bower。
npm 是 node package manager 的意思 , node js 使用 npm 是管理依赖的包(也就是js类库)
5、安装weui:bower install --save weui
6、开发
git clone https://github.com/weui/weui.git
cd weui
npm install -g gulp
npm install
npm start 或者gulp -ws
7、bower 的常用命令简介:
cache:bower缓存管理
help:显示Bower命令的帮助信息
home:通过浏览器打开一个包的github发布页
info:查看包的信息
init:创建bower.json文件
install:安装包到项目
link:在本地bower库建立一个项目链接
list:列出项目已经安装的包
lookup:根据包名查询包的URL
prune:删除项目无关的包
register:注册一个包
search:搜索项目的包
update:更新项目的包
uninstall:删除项目的包
查看已安装的库例表:bower list
更新某个库:bower update
8、常见错误处理
(1)、npm WARN deprecated [email protected]: Please update to minimatch 3.0.2 or higher to avoid a RegExp DoS issue
处理方法:
(2)、npm WARN deprecated [email protected]: graceful-fs v3.0.0 and before will fail on node releases >= v7.0. Please update to [email protected]^4.0.0 as soon as possible. Use ‘npm ls graceful-fs‘ to find it in the tree.
处理方法:
以上是关于bower安装使用git安装node安装weui安装开发的主要内容,如果未能解决你的问题,请参考以下文章