JSPM

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

A Bonjour/Zeroconf protocol implementation in JavaScript

Package Exports

  • zeroconf

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 (zeroconf) to support the "exports" field. If that is not possible, create a JSPM override to customize the exports field for this package.

Readme

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