Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

bonjour

Package Overview
Dependencies
Maintainers
1
Versions
12
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

bonjour - npm Package Compare versions

Comparing version 1.0.0 to 2.0.0

.travis.yml

52

package.json
{
"name": "bonjour",
"version": "1.0.0",
"description": "a Sails application",
"version": "2.0.0",
"description": "A Bonjour/Zeroconf protocol implementation in JavaScript",
"main": "index.js",
"dependencies": {
"sails": "0.9.4",
"grunt": "0.4.1",
"sails-disk": "~0.9.0",
"ejs": "0.8.4",
"optimist": "0.3.4",
"request": "~2.27.0"
"mdns-txt": "^1.0.0",
"multicast-dns": "^4.0.0",
"multicast-dns-service-types": "^1.1.0"
},
"devDependencies": {
"standard": "^5.3.1",
"tape": "^4.2.2"
},
"scripts": {
"start": "node app.js",
"debug": "node debug app.js"
"test": "standard && tape test/service.js"
},
"main": "app.js",
"repository": "",
"author": "",
"license": ""
"repository": {
"type": "git",
"url": "https://github.com/watson/bonjour.git"
},
"keywords": [
"bonjour",
"zeroconf",
"zero",
"configuration",
"mdns",
"dns",
"service",
"discovery",
"multicast",
"broadcast",
"dns-sd"
],
"author": "Thomas Watson Steen <w@tson.dk> (https://twitter.com/wa7son)",
"license": "MIT",
"bugs": {
"url": "https://github.com/watson/bonjour/issues"
},
"homepage": "https://github.com/watson/bonjour",
"coordinates": [
55.6809588,
12.57191
]
}
# bonjour
### a Sails application
A Bonjour/Zeroconf protocol implementation in JavaScript.
**This project is still work-in-progress**
[![Build status](https://travis-ci.org/watson/bonjour.svg?branch=master)](https://travis-ci.org/watson/bonjour)
[![js-standard-style](https://img.shields.io/badge/code%20style-standard-brightgreen.svg?style=flat)](https://github.com/feross/standard)
## Installation
```
npm install bonjour
```
## Usage
Advertising new services:
```js
var bonjour = require('bonjour')()
// advertise an HTTP server on port 3000
// or give it a custom name and configuration details
bonjour.publish({ type: 'http', protocol: 'tcp', port: 3000, name: 'Foobar', txt: {...} })
```
## License
MIT

Sorry, the diff of this file is not supported yet

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc