weinre 手机端页面调试
Weinre代表 Web Inspector Remote,是一种远程调试工具, 采用nodejs做为http服务器,用ajax通信
nodejs 官网
weinre官网
1、安装nodejs 会自动安装 npm(nodejs package manager)
建议最好不要修改默认安装路径
#测试是否安装成功 node -v # v0.10.31 npm -v # 1.4.23
npm 常用命令:
2、安装weinre
npm -g install weinre
默认会安装在C盘目录里,好像还不太好修改。。。
3、
命令行直接运行:
weinre --boundHost -all- --httpPort 9999
还可以生成启动配置文件
在 用户根目录(C:\Users\root\)下新建 .weinre目录(需要在命令行下创建才行 )在目录内 新建 server.properties ,内容如下
boundHost: -all- #域名方式 weinre.cm 需要修改host为 127.0.0.1 weinre.cm httpPort: 80 reuseAddr: true readTimeout: 1 deathTimeout: 5
参考文档 http://people.apache.org/~pmuellr/weinre/docs/latest/Running.html
启动:
weinre
注意:命令行下的参数会覆盖配置文件中的
4、可直接略过3步默认绑定localhost的8080端口
浏览器中直接访问 http://localhost:8080/
出现上面界面表示安装成功
调试:
参考地址:http://www.cnblogs.com/lhb25/p/debug-mobile-site-and-app-with-weinre.html
调试工具对比: