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 🙏

© 2026 – Pkg Stats / Ryan Hefner

network-discovery

v1.1.0

Published

A simple service which can be used to discover the ip of the computer via udp

Readme

network-discovery

This is a lightweight service which can be used to find a service in a network.

CLI Usage

There is a server which provides a simple REST API. On that server the discovery service must be started:

discovery-service simple-api 1.0

Now on any other device in the same network, this service can be found with:

discover-service simple-api 1.0

Node Module Usage

This service can also be integrated in any node application. Just install it:

npm install --save network-discovery

And then start the discovery service with:

const {startDiscovery} = require('network-discovery');
startDiscovery({application: 'simple-api', version: '1.0'});

Now the server can be found by the CLI.

Protocol

The protocol is very simple. It just listen to an UDP port. The client sends a datagram to the network broadcaster. When the server receive a datagram with the same application name and the same version, the server will response to the address and port where the datagram came from.

Packet

The structure of the packet is as the following:

  • 2 bytes magic number: 0xaf 0xbf
  • 2 bytes length of application name (big endian)
  • application name in ascii
  • 2 bytes length of version (big endian)
  • version in ascii And the response:
  • 2 bytes magic number: 0xaf 0xcf