weex 一些问题

liudeMacBook-Air:Desktop liuqiang$ weex list.we --qr
info Mon Jan 09 2017 17:49:11 GMT+0800 (CST)WebSocket  is listening on port 8082 
info Mon Jan 09 2017 17:49:11 GMT+0800 (CST)http  is listening on port 8081 
The following QR encoding url is
http://192.168.1.101:8081/weex_tmp/h5_render/list.js?wsport=8082

端口被占用
在windows下

在cmd中
netstat -aon | findstr 8082
运行完找到占用的进程id ,应该是最后一列的数字
taskkill /f -pid 上面进程id

在mac/linux上

在ter中
lsof -i TCP:8082
运行完 找到占用该端口的进程id ,pid的一列
kill -9  上面的pid

你可能感兴趣的:(weex 一些问题)