Socket
Socket
Sign inDemoInstall

node-upnp-ssdp

Package Overview
Dependencies
2
Maintainers
1
Versions
5
Alerts
File Explorer

Advanced tools

Install Socket

Detect and block malicious and high-risk dependencies

Install

node-upnp-ssdp

Simple Service Discovery for Node 0.12, handling Upnp NOTIFY and M-SEARCH requests.


Version published
Maintainers
1
Weekly downloads
9
decreased by-47.06%
Install size
905 kB

Weekly downloads

Readme

Source

node-ssdp

Simple Service Discovery for Node 0.12, handling Upnp NOTIFY and M-SEARCH requests.

This is pretty much a rewrite of a library I forked https://github.com/bazwilliams/node-upnp-client the fork of which stopped working when I upgraded to Node 12. I decided to pare the library right down to the parts I was using, i.e. SSDP and rewrite those portions.

Installation

npm install node-upnp-ssdp

Examples

In the examples folder there are some example applications one of which shows a simple service discovery with a preset mSearch for Openhome Devices; the other shows simple service discover if the parameter is left unset, the search request is for all devices ssdp:all.

If a device is found a DeviceFound event is emitted.

Whenever the module is first used, it starts listening for SSDP broadcasts from other devices on your network, it will announce the following events:

  • DeviceAvailable - emitted when a NOTIFY message received with ssdp:alive
  • DeviceUnavailable - emitted when a NOTIFY message received with ssdp:byebye
  • DeviceUpdate - emitted when a NOTIFY message received with ssdp:update

In addition, the above events also emit events categorised by their notfication type. I.e. if you are only interested in Openhome playlist services with type urn:av-openhome-org:service:Playlist:1. Then add the notification type after the event name you are interested in. For example:

ssdp.on('DeviceAvailable:urn:av-openhome-org:service:Playlist:1', console.log);

References:

Openhome: http://www.openhome.org/wiki/Oh:Overview

Upnp Specs: http://upnp.org/specs/arch/UPnP-arch-DeviceArchitecture-v1.1.pdf

Keywords

FAQs

Last updated on 17 Oct 2015

Did you know?

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

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

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc