weex开发最基础配置

第一步:安装依赖

1.brew install node

安装node.js环境,同步会安装npm包管理工具

2.node -v

npm -v

测试node和npm是否安装完成

3.npm install -g weex-toolkit

用来安装weex-toolkit

weex -v查看版本确定在v1.0.1之上

weex查看是否安装成功:

Usage: weex [options]

选项:

--porthttp listening port number ,default is 8081[默认值: 8081]

--wsportwebsocket listening port number ,default is 8082[默认值: 8082]

--entrythe entry file in a folder

where is one of:

initcreate a vue project

debugstart weex debugger

compilecompile we/vue file

createcreate a weexpack project

platform add/remove ios/android platform

plugin add/remove weexplugin

run build your ios/android app and run

weex --helphelp on

bogon:~ gomeguomingyue$ weex -v

v1.0.5

- weex-builder : v0.2.6

- weex-previewer : v1.3.8

bogon:~ gomeguomingyue$

4.weex init awesome-project

初始化项目

5.npm install卡住了,一直不能成功,所以这套脚手架不能用,目前还没有解决方案,只能用《写一个简单的weex文件到运行到iOS平台过程》中方法开发weex.

找到解决方法,因为安装node,npm等一路用了sudo权限,所以这里有点问题,使用sudo npm install 即可安装成功。

你可能感兴趣的:(weex开发最基础配置)