zeroconf
v0.1.4
Published
A Bonjour/Zeroconf protocol implementation in JavaScript
Downloads
28
Maintainers
Readme
zeroconf
Deprecation notice: This module have been renamed to bonjour
A Bonjour/Zeroconf protocol implementation in JavaScript.
Installation
npm install zeroconf
Usage
Advertising new services:
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: {...} })
License
MIT