Socket
Socket
Sign inDemoInstall

mdns-discovery

Package Overview
Dependencies
Maintainers
1
Versions
20
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

mdns-discovery

Multicast DNS


Version published
Weekly downloads
1.6K
increased by0.25%
Maintainers
1
Weekly downloads
 
Created
Source

###mdns Multicast DNS

NPM version License

####Some Examples:

Find all Amazon Fire TV devices on the local network:


var Mdns = require('mdns-discovery');

var mdns = new Mdns({
    timeout: 4,
    returnOnFirstFound: true,
    name: '_amzn-wplay._tcp.local',
    find: 'amzn.dmgr:'
});
mdns.run (function(res) {
    res.forEach(enry) {
       console.log(entry);
    }
});

List all mdns questions and answers for 10 seconds:

var Mdns = require('mdns-discovery');

var mdns = new Mdns({ timeout: 10 });
mdns.on('packet', function (packets, rinfo) {
    if (packets.answers) packets.answers.forEach(function(packet, i) {
        console.log(`A: ${rinfo.address} - packet[${i}]=${packet.name}, type=${packet.type}, class=${packet.class}, ttl=${packet.ttl}}`);
    });
    if (packets.questions) packets.questions.forEach(function(packet, i) {
        console.log(`Q: ${rinfo.address} - packet[${i}]=${packet.name}, type=${packet.type}, class=${packet.class}, ttl=${packet.ttl}}`);
    });
});
mdns.run ();

Presence:

var mdns = require('mdns-discovery')();

mdns.onIP('192.168.1.31', function (packet, rinfo) {
    if (packet.answers.length) {
        console.log(rinfo.address + ' is present');
    }
}).run ();

Filter:

var mdns = require('mdns-discovery')();

var mdns = Mdns({
    timeout: 3,
    name: '_amzn-wplay._tcp.local',
    find: 'amzn.dmgr:'
});

var allreadyUsed = [ {ip: '192.168.1.94'}, {ip: '192.168.1.91'} ];

mdns.setFilter('ip', allreadyUsed).run (function(res) {
    res.forEach(function(v) {
        console.log(v);
    });
});

Keywords

FAQs

Package last updated on 05 May 2017

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc