raop-mdns-server

September 5, 2015 ยท View on GitHub

A RAOP mDNS broadcast server.

This module is not a RAOP 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 raop-mdns-server

Usage

var mdns = require('raop-mdns-server')

var opts = {
  name: 'My RAOP Server',
  version: '1.0.0',
  port: 5000
}

mdns(opts, function (err) {
  if (err) throw err
  console.log('RAOP server is being advertised')
})

License

MIT