freebird-netcore-coap
v0.0.10
Published
A CoAP machine network core for freebird framework.
Downloads
6
Readme
freebird-netcore-coap
A CoAP machine network core for freebird framework.
Documentation
Please visit the Wiki.
Overview
freebird-netcore-coap is the network controller (netcore) with managment facilities ready for freebird IoT framework.
Installation
$ npm install freebird-netcore-coap --save
Basic Usage
var Freebird = require('freebird'),
coapCore = require('freebird-netcore-coap')();
// Create the freebird server and register the freeebird-netcore-coap to it
var freebird = new Freebird([coapCore]);
// Start the freebird server
freebird.start(function (err) {
// Let your coap machines join the network
freebird.net.permitJoin(180);
});
// That's it!
License
Licensed under MIT.