/node-fwe-client

A socket.io client that connects to my weather experiment

Primary LanguageJavaScript

node-fwe-client

Build Status NPM This client is an interface to my FWE.

Example

An example that logs the weather object to the console.

var WeatherClient = require('weather');
var fwe = new WeatherClient();

fwe.on('weather',function(weather){
    console.log(weather);
})

Documentation