node-alljoyn

0.2.8 • Public • Published

node-alljoyn

Node.js Integration for Alljoyn Service Functions

Installation

$ npm install node-alljoyn

Usage

We plan to provide three Alljoyn functions in this module.

  • Action Handler
  • Event Reader & Rule Engine
  • ControlPanel Client

Example

This sample prints the device name from your Alljoyn network.

var alljoyn = require('node-alljoyn');
 
var result = alljoyn.findAlljoynServices();
if (result == 0) {
  var dev_num = alljoyn.getDeviceName();
  
  for (var i=0; i < dev_num; i++) {
    console.log('Device Name [' + i + '] = "' + alljoyn.getDeviceName(i) + '"');
  }
}

Test Platform

  • Linux (Yocto 1.5)

Alljoyn Version

v14.06

  • The Alljoyn API integration is leveraged from alljoyn.

License

Copyright 2015 ADVANTECH Corp. under the Apache 2.0 license.

Package Sidebar

Install

npm i node-alljoyn

Weekly Downloads

0

Version

0.2.8

License

Apache-2.0

Last publish

Collaborators

  • neo.lo