0.1.4 • Published 8 years ago

zeroconf v0.1.4

Weekly downloads
9
License
MIT
Repository
github
Last release
8 years ago

zeroconf

Deprecation notice: This module have been renamed to bonjour

A Bonjour/Zeroconf protocol implementation in JavaScript.

Build status js-standard-style

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