Mirror: Best-effort discovery of the machine's local network using just Node.js dgram sockets
at main 12 lines 293 B view raw
1import { lanNetwork } from './index'; 2 3async function output() { 4 const assignment = await lanNetwork({ 5 noProbe: process.argv.includes('--no-probe'), 6 noDhcp: process.argv.includes('--no-dhcp'), 7 }); 8 process.stdout.write(JSON.stringify(assignment)); 9 process.exit(0); 10} 11 12output();