npm package discovery and stats viewer.

Discover Tips

  • General search

    [free text search, go nuts!]

  • Package details

    pkg:[package-name]

  • User packages

    @[username]

Sponsor

Optimize Toolset

I’ve always been into building performant and accessible sites, but lately I’ve been taking it extremely seriously. So much so that I’ve been building a tool to help me optimize and monitor the sites that I build to make sure that I’m making an attempt to offer the best experience to those who visit them. If you’re into performant, accessible and SEO friendly sites, you might like it too! You can check it out at Optimize Toolset.

About

Hi, 👋, I’m Ryan Hefner  and I built this site for me, and you! The goal of this site was to provide an easy way for me to check the stats on my npm packages, both for prioritizing issues and updates, and to give me a little kick in the pants to keep up on stuff.

As I was building it, I realized that I was actually using the tool to build the tool, and figured I might as well put this out there and hopefully others will find it to be a fast and useful way to search and browse npm packages as I have.

If you’re interested in other things I’m working on, follow me on Twitter or check out the open source projects I’ve been publishing on GitHub.

I am also working on a Twitter bot for this site to tweet the most popular, newest, random packages from npm. Please follow that account now and it will start sending out packages soon–ish.

Open Software & Tools

This site wouldn’t be possible without the immense generosity and tireless efforts from the people who make contributions to the world and share their work via open source initiatives. Thank you 🙏

© 2024 – Pkg Stats / Ryan Hefner

mdns-js-mw

v0.5.1-mw.0.1.2

Published

JavaScript/NodeJS mDNS discovery implementation, with IPv6 modify.

Downloads

8

Readme

mdns-js-mw

Customize mdns-js for MilkyWay.

mdns-jw-mw Functions

  • Implement the mDNS function that can detect Deneb.
    • At a minimum, the function to acquire the Instance Name and port number of the specified Service, the IPv4 and IPv6 addresses of the Host with that Service Instance, and the Network Interface IP address on the detected Local Host can be realized.
    • Implement a function to notify the caller when a specified Service is newly detected.
    • If it can be detected that the specified Service no longer exists (Exp:"goodbye", Implement the function to notify the caller when RFC6762 10.1 is detected, etc.)
  • You can throw mDNS queries. (Should)

mDNS Stack Reference

  • RFC 6762 - Multicast DNS : https://tools.ietf.org/html/rfc6762
  • RFC 6763 - DNS-Based Service Discovery : https://tools.ietf.org/html/rfc6763

mDNS Stack Assumption

This module is intended to be used for Windows. With regard to the above roles, it is assumed to use the existing interface of node-mdns-js as it is. As customization points, functions lacking in realizing the role (Exp: Addition of IPv6 (in node-mdns-js) and confirmation that the above role can be realized at a level that can be incorporated into products.

Usage

var mdns = require('mdns-js');

// create browser with query
var browser = mdns.createBrowser(mdns.tcp("digitalpaper"));

// post initialize event
browser.on('ready', function onReady() {
	console.log('browser is ready');
});

// discover event
browser.on('update', function onUpdate(data) {
	console.log('data:', data);
});

// stop discovery
browser.stop();

// start discovery (ready after)
browser.discover();

// start alternative
browser.start();

API

on(eventName, callback)

Event listener

  • eventName
  • ready: finished initialize
  • update: found node

discover()

mDNS start search. Execute after the ready event.

start()

It is prepared for compatibility with the mdns module, and calls discover() internally. If called before ready, delay to discover after ready.

stop()

Stop searching.


Below, the original description of the underlying module.

mDNS-js

Build Status

Pure JavaScript/NodeJS mDNS discovery implementation. It's definitely not a full implementation at the current state and it will NOT work in the browser.

The starting inspiration came from https://github.com/GoogleChrome/chrome-app-samples/tree/master/mdns-browser but adapted for node. It's not much left of that now though.

NEW LOCATION

This project was moved into it's own organisation. Please update any git remotes you might have pointing here.

git remote set-url origin https://github.com/mdns-js/node-mdns-js.git

Install by

npm install mdns-js

If you are running node version < 4.1 you will have to use a version of this library that is below version 0.5.0

Future

It would be great to have a full implementation of mDSN + DNS-SD in pure JS but progress will be slow unless someone is willing to pitch in with pull requests, specifications for wanted functions etc. Also, as you should avoid to have multiple mDNS stacks on a system this might clash with stuff like avahi and bonjour.

Example

var mdns = require('mdns-js');
//if you have another mdns daemon running, like avahi or bonjour, uncomment 
// following line mdns.excludeInterface('0.0.0.0');

var browser = mdns.createBrowser();

browser.on('ready', function () {
    browser.discover(); 
});

browser.on('update', function (data) {
    console.log('data:', data);
});

Reporting issues

Please report any issues at https://github.com/mdns-js/node-mdns-js/issues

But please check if there is a similar issue already reported and make a note of which OS and OS version you are running. There is some issues that turn up only on Windows 8.1 but not in Windows 7 for example. And there are differences between Mac and Windows so... please...

Another important thing to know if there is another mdns service running on the same machine. This would be for example Bonjour and Avahi.

Debugging

This library is using the debug module from TJ Holowaychuk and can be used like this.

DEBUG=mdns:* node examples/simple.js

This will spit out LOTS of information that might be useful. If you have some issues with something where you might want to communicate the contents of a packet (ie create an issue on github) you could limit the debug information to just that.

DEBUG=mdns:browser:packet node examples/simple.js

Contributing

Pull-request will be gladly accepted.

If possible any api should be as close match to the api of node-mdns but be pragmatic. Look at issue #5.

Please run any existing tests with

npm test

and preferably add more tests.

Before creating a pull-request please run

npm run lint 

This will run jshint as well as jscs that will do some basic syntax and code style checks. Fix any issues befor committing and creating a pull-request.

Look at the .eslintrc file for the details.

License

Apache 2.0. See LICENSE file.

References

  • https://github.com/GoogleChrome/chrome-app-samples/tree/master/samples/mdns-browser
  • http://en.wikipedia.org/wiki/Multicast_DNS
  • http://en.wikipedia.org/wiki/Zero_configuration_networking#Service_discovery
  • RFC 6762 - mDNS - http://tools.ietf.org/html/rfc6762
  • RFC 6763 - DNS Based Service Discovery (DNS-SD) - http://tools.ietf.org/html/rfc6763
  • http://www.tcpipguide.com/free/t_DNSMessageHeaderandQuestionSectionFormat.htm

Contributors

  • James Sigurðarson, @jamiees2
  • Stefan Sauer, @ensonic