What does the Node.js `--nolazy` flag mean?
问题 When I use --nolazy , I can finally debug asynchronously with IntelliJ, as breakpoints stop at the correct place. But I can't find any docs on --nolazy ... What does --nolazy mean? 回答1: To let anyone know, if you debug node js (especially remote debug) and use async type coding which you kind of have to as this is the nature of node, you will to run node with the flag of -nolazy node --nolazy --debug-brk sample1.js this will force V8 engine to do full compile of code and thus work properly