NodeJS debug on eclipse

简述:

需要在eclipse中配置NodeJS的debug


步骤:

1. eclipse安装V8 调试工具

http://chromedevtools.googlecode.com/svn/update/dev/


3. 进入哟debug的文件夹,启动debug,默认端口是5858



也可以自己设置debug端口



-brk参数表示

debug的断点将会在程序运行之初就执行中断,以等待debugger的连接


2. eclipse进入debug视图

进入debug configuration设置, 将debug监听的端口设为5858

NodeJS debug on eclipse_第1张图片


下面是debug的界面

NodeJS debug on eclipse_第2张图片


当有console.log的行经过时, cmd中会输出一条记录。





你可能感兴趣的:(NodeJS debug on eclipse)