A socket.io client that connects to my weather experiment
This client is an interface to my FWE.
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);
})