@hg8496/umgfinder
v2.1.2
Published
A tool to find all Janitza UMGs in the specified network
Downloads
16
Readme
umgfinder
A node js library to find all ethernet based Janitza UMGs in the specified network.
import { scanNetwork } from '@hg8496/umgfinder';
async function main() {
return await scanNetwork(process.argv[2]);
}
main().then((devices) => {
devices.forEach((device) => {
console.log(device.deviceType, device.ip, device.serialNumber, device.firmwareVersion)
})
});