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