Skip to content

freebirdjs/freebird-netcore-coap

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

26 Commits
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 
 

Repository files navigation

freebird-netcore-coap

A CoAP machine network core for freebird framework.

NPM

Build Status npm npm


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.