JSPM

airplay-mdns-server

2.0.0
  • ESM via JSPM
  • ES Module Entrypoint
  • Export Map
  • Keywords
  • License
  • Repository URL
  • TypeScript Types
  • README
  • Created
  • Published
  • Downloads 12
  • Score
    100M100P100Q43313F
  • License MIT

An AirPlay mDNS broadcast server

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.

Build status js-standard-style

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