使用调试器时连接被拒绝

时间:2017-08-25 12:24:52

标签: node.js

我已经将一个节点调试器附加到我的JS文件中,并且在将调试器附加到js文件之后,该文件是在端口8080上运行的服务器,当我尝试使用localhost访问它时 - 它给出以下错误消息:

节点版本是v6.11.2,附加的调试器是节点附带的(默认),如

node debug JSONServer.js

文件中使用的模块是核心模块http和https,机器的操作系统是Windows 10

  

连接被拒绝

请说明可能的原因。

由于

1 个答案:

答案 0 :(得分:0)

所有

后来我尝试使用包node-debugger

从Atom运行调试器

仍然给出同样的错误

  

拒绝连接

然后我尝试使用以下命令

将调试器附加到Atom外部
table {  
    color: #333;
    font-family: Helvetica, Arial, sans-serif;

    border-collapse: 
    collapse; border-spacing: 0; 
}

td, th {  
    border: 1px solid; /* No more visible border */
    height: 30px; 

    transition: all 0.3s;  /* Simple transition for hover effect */
}

th {  
    background: #DFDFDF;  /* Darken header a bit */
    font-weight: bold;
    text-align: center;
    height: 50px;
}

td {  
    background: #FAFAFA;

     height: 40px;
}

/* Cells in even rows (2,4,6...) are one color */        
tr:nth-child(even) td { background: #F1F1F1; }   

/* Cells in odd rows (1,3,5...) are another (excludes header cells)  */        
tr:nth-child(odd) td { background: #FEFEFE; }  

并在Atom中打开调试器,这次调试器在Atom中工作。