0.0.4 • Published 8 years ago

upnp-client-minimal v0.0.4

Weekly downloads
1
License
MIT
Repository
-
Last release
8 years ago

upnp-client

Very basic node.js framework for communicating with UPnP devices; allows to send commands and receive events. Use ssdp-client for device discovery.

Usage:

var device = require("./device");

device({descriptorUrl: 'http://192.168.1.30:55000/dmr/ddd.xml'}, function(err, dev) {
    var renderingControl = dev.services['urn:upnp-org:serviceId:RenderingControl'];

    renderingControl.X_GetAudioList({InstanceID:0}, function(err, body) {
        console.log(body);
    });

    renderingControl.on("LastChange", function(event) {
        console.log(event);
    });
});
0.0.4

8 years ago

0.0.3

10 years ago

0.0.2

10 years ago

0.0.1

10 years ago