@hg8496/umgfinder
Version:
A tool to find all Janitza UMGs in the specified network
21 lines (16 loc) • 798 B
Markdown
# umgfinder
[](https://www.npmjs.com/package/@hg8496/umgfinder)
[](https://travis-ci.org/hg8496/umgfinder)
[](https://coveralls.io/github/hg8496/umgfinder?branch=master)
A node js library to find all ethernet based Janitza UMGs in the specified network.
```typescript
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)
})
});
```