Package Exports
- airplay-mdns-server
This package does not declare an exports field, so the exports above have been automatically detected and optimized by JSPM instead. If any package subpath is missing, it is recommended to post an issue to the original package (airplay-mdns-server) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.
Readme
airplay-mdns-server
An AirPlay mDNS broadcast server.
This module is not an AirPlay server in it self, but mearly broadcasting its address (the mac/ip of the machine running this Node module) using multicast DNS.
Installation
npm install airplay-mdns-server
Usage
var mdns = require('airplay-mdns-server')
var opts = {
name: 'My AirPlay Server',
version: '1.0.0',
port: 5000
}
mdns(opts, function (err) {
if (err) throw err
console.log('AirPlay server is being advertised')
})
License
MIT