天天看點

node.js, node-debug, node-inspector, npm 等等的使用問題解決

1、node-debug的error:

/home/hzh/hzh/soft/softy/node-v6.10.0-linux-x64/lib/node_modules/node-inspector/lib/InjectorClient.js:111

      cb(error, NM[0].ref);

                     ^

TypeError: Cannot read property 'ref' of undefined

    at InjectorClient.<anonymous> (/home/hzh/hzh/soft/softy/node-v6.10.0-linux-x64/lib/node_modules/node-inspector/lib/InjectorClient.js:111:22)

解決方法:

打開這個檔案,修改成:

cb(error, NM.length==0 ? null : NM[0].ref);