RPG ツクール MV/MZ のゲームなど、nw.js 製のアプリは "2001:4860:482d:7700::" と通信をしていることがある。このアドレスは www.google.com である。nw.js には chromium が同梱されており、chromium がバックグラウンドで何かをしている。多分無害だが、不要な通信はしないでほしいところである。

nw.js の issue のコメントによると、package.json の中の "chromium-args" を以下のように設定すればいいらしい。
"chromium-args": "--proxy-server='http://127.0.0.1;https://127.0.0.1' --disable-sync --disable-background-networking --disable-component-update --host-rules='MAP * 127.0.0.1' --disable-http-cache --disable-http2 --disable-ntp --disable-renderer-backgrounding --disable-sync --disable-features=NetworkService",
実際にこれで通信が行われなくなることが確認できた。
