previewer-tool-for-Apache-Weex
previewer-tool-for-Apache-Weex copied to clipboard
a tool help user to preview their weex files
weex-previewer
a tool help user to preview their weex files
how to use
npm install weex-previewer --save
var preview = require('weex-previewer');
preview({
entry: 'src/index.vue',
port: 8081
});
use command line
npm install weex-previewer -g
weex-previewer src/index.vue
Options
| name | Type | Example | Description |
|---|---|---|---|
| entry | string | 'src/index.vue' | the efile you want to preview |
| open | boolean | true | auto open browser |
| port | string | 8801 | specify an port for local web server |
| wsport | string | 8804 | specify an websocket port for hot reload |
ChangeLog
1.3.9
- Fix ip address on server.
- Replace quick-local-ip module with ip module.