node-upnp
v1.3.0
Published
Modern UPnP Client Library
Downloads
317
Maintainers
Readme
Modern UPnP Client Library
Modern UPnP client with async/await support and sane extensible codebase.
Install
npm i node-upnp
Usage
const UPnPClient = require('node-upnp');
const client = new UPnPClient({
url: 'http://192.168.1.150:44042/some.xml'
});
const desc = await client.getDeviceDescription();
console.log('Device', desc);
API
async getDeviceDescription()
returns device description
async getServiceDescription(serviceId)
returns service description
async call(serviceId, actionName, data)
calls actionName
for serviceId
with data
and return a result
async subscribe(serviceId, listener)
subscribes for serviceId
service updates. Keeps the subsription alive.
async unsubscribe(serviceId, listener)
unsubscribes from serviceId
service updates.
hasSubscriptions()
returns true/false
is the client has any active subscriptions
clearSubscriptions()
clears all subscriptions
async on(variable, listener, options = {})
subscribes on the variable change event. Options:
- force — Boolean, when true, subscribes on the service even if variable is
sendEvents='no'
in the service description. This options is for variable included inLastChange
event.
async off(variable, listener)
emit(...args)
async removeAllListeners()
License MIT