Right now break point which added by node.js on the first line of start script (--debug-brk) causes that in each iteration of the following code sample we get break event and process it.
```javascript
while (true){
console.log('Hello world!');
}
```
So after attaching debugger we should remove that breakpoint.
```javascript
while (true){
console.log('Hello world!');
}
```
So after attaching debugger we should remove that breakpoint.