discoverBridgeViaUpnp.js 268 Bytes Raw Blame History Permalink 1 2 3 4 5 6 7 8 9 10 11 12 13 'use strict'; const discovery = require('../../index').discovery ; async function getBridge() { const results = await discovery.upnpSearch(); // Results will be an array of bridges that were found console.log(JSON.stringify(results, null, 2)); } getBridge();