A Bonjour/Zeroconf protocol implementation in JavaScript
npm install zeroconf**Deprecation notice: This module have been renamed to
bonjour**
A Bonjour/Zeroconf protocol implementation in JavaScript.


```
npm install zeroconf
Advertising new services:
`js
var zeroconf = require('zeroconf')()
// advertise an HTTP server on port 3000
zeroconf.tcp.publish('http', 3000)
// or give it a custom name and configuration details
zeroconf.publish({ type: 'http', protocol: 'tcp', port: 3000, name: 'Foobar', txt: {...} })
``
MIT