0.0.3 • Published 6 years ago

promisified-dbus-native v0.0.3

Weekly downloads
1
License
MIT
Repository
github
Last release
6 years ago

promisified-dbus-native

Promisified dbus-native

const dbus = require('promisified-dbus-native');

dbus.systemBus()
  .getInterface('org.freedesktop.DBus', '/org/freedesktop/DBus', 'org.freedesktop.DBus.Introspectable')
  .then(iface => iface.Introspect())
  .then(result => console.log(result));

install

npm install promisified-dbus-native