iweex-toolkit
v0.0.29
Published
Weex CLI Toolkit
Downloads
2
Readme
iWeex-Toolkit
============
Weex CLI toolkit
Pre Install
some dependencies need recent version of npm to install
if your
$ node -v
output less then 6.0.0
, please upgrade your node at first
you can use n
to install newer node or download in https://nodejs.org/
recommend the LTS version of node
Install
$ npm install -g iweex-toolkit
Usage
Usage: iweex init [projectName]
选项:
--port http listening port number ,default is 8081 [默认值: 8081]
--wsport websocket listening port number ,default is 8082 [默认值: 8082]
Usage:iweex <command>
where <command> is one of:
init create a vue project
debug start weex debugger
compile compile we/vue file
create create a weexpack project
platform <add|remove> <ios|android> add/remove ios/android platform
plugin <add|remove> <pluginName> add/remove weexplugin
run <ios|android> build your ios/android app and run
iweex <command> --help help on <command>
Examples
create a new vue project
$ iweex init your_project_name
Your new project directory list below:
|—— .gitignore
|—— README.md
|—— .eslintrc
|—— .babelrc
|-- app.js
|—— assets
|—— /src
| |—— index.vue
|—— /build
|—— weex.html
|—— index.html
Switch to the project directory and run:
npm install
Some npm commands you can use:
# build both two js bundles for Weex and Web
npm run build
# start a Web server at 8080 port
npm run dev
# start weex-devtool for debugging with native
npm run debug