Accessing the #deno V8 Inspector via #WSL 2 with Google Chrome running on Windows was a bit of a challenge.
In Linux:
```
deno run --inspect-brk=0.0.0.0:9229 --allow-net ...
```
In Windows, via Admin mode #PowerShell :
```
netsh interface portproxy add v4tov4 listenport=9229 listenaddress=0.0.0.0 connectport=9229 connectaddress=(wsl hostname -I)
```