Node2-6环境&调试----debug

Posted chorkiu

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Node2-6环境&调试----debug相关的知识,希望对你有一定的参考价值。

 

13_debug.js

//测试的脚本
function test1() 
    const a = parseInt(Math.random() * 10);
    const b = parseInt(Math.random() * 10);
    const c = test2(a, b)


function test2(a, b) 
    if (a > b) 
        a += a * 2
     else 
        b -= a
    
    return a + b;


test1();

运行代码:

技术图片

接着 打开chrome://inspect/#devices

技术图片

进入调试环境

技术图片

 

以上是关于Node2-6环境&调试----debug的主要内容,如果未能解决你的问题,请参考以下文章

项目实现远程Debug调试

Tensorflow之调试(Debug) && tf.py_func()

快速解决Dev c++无法调试

idea下远程debug调试

node.js 远程调试debug产线环境代码

Eclipse开发环境debug模式调试断点从jar跳到源码