I am on Node.js versions 6+ I am trying to use `NODE_OPTIONS` this is working for me: ```bash node --inspect-brk foo.js ``` but this isn't ```bash NODE_OPTIONS="--inspect-brk" node foo.js ``` with the latter I keep getting "address is already in use" errors any ideas?