pomelo 调试环境 chrome
环境: win7, chrome 26.0, nodejs v0.10.22, pomelo 0.7.6
测试代码: https://github.com/NetEase/chatofpomelo-websocket
webstorm 调试 http://nodejs.netease.com/topic/515251b97f53b3d3330025c7
因为原来没有用过chrome调试过js,想用用,所以就试着配置了pomelo的chrome调试环境
安装node-inspector
调试前启动node-inspector来监听Nodejs的debug调试端口
设置pomelo的调试端口game-server/config/server.json (可以给gate, chat, connector)
然后启动 pomelo 的 game-server, web-server
在浏览器输入 http://127.0.0.1:8080/debug?port=32123 (32123是上面设置的调试端口)
在gateHandler.js 的 handler.queryEntry = function(msg, session, next) { 打上断点, 执行登录
可以看到成功断下
Note:
目前比较麻烦的时候,要调试gate -- debug 32123, chat -- debug 32124, 浏览器就要开2个标签,不知道有没有能在一个标签里面调试的方法?