netbeast / api

:rocket: Node.js wrapper for the resources Netbeast Router HTTP API.
http://netbeast.co
11 stars 7 forks source link

Little refactors #13

Closed jsdario closed 8 years ago

jsdario commented 8 years ago

Change this:

var netbeast = require('netbeast')
netbeast().info('Something happened!')

Into this:

var netbeast = require('netbeast')
netbeast.info('Something happened!')

And this:

var netbeast = require('netbeast')
netbeast('temperature').on(function (message) {
   ...
})

Into this:

var netbeast = require('netbeast')
netbeast.on('temperature', function (tempObject)  {
   ...
})
pablopi commented 8 years ago

Done, will be released soon :)