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.
Comments: It was fixed in the commit [38ab5c4234200858cd321aa3a02db253d7b45fa4](https://nodejstools.codeplex.com/SourceControl/network/forks/dtretyakov/debugger/changeset/38ab5c4234200858cd321aa3a02db253d7b45fa4).
```javascript
while (true){
console.log('Hello world!');
}
```
So after attaching debugger we should remove that breakpoint.
Comments: It was fixed in the commit [38ab5c4234200858cd321aa3a02db253d7b45fa4](https://nodejstools.codeplex.com/SourceControl/network/forks/dtretyakov/debugger/changeset/38ab5c4234200858cd321aa3a02db253d7b45fa4).