Skip to content

Instantly share code, notes, and snippets.

@theterg
Created October 13, 2012 19:18
Show Gist options
  • Save theterg/3885822 to your computer and use it in GitHub Desktop.
Save theterg/3885822 to your computer and use it in GitHub Desktop.
var WebSocket = require('ws')
, ws = new WebSocket('ws://api.cosm.com:8080/');
var API_KEY = "" //ENTER API KEY HERE.
ws.on('open', function() {
ws.send('{"headers":{"X-ApiKey":"'+API_KEY+'"}, "method":"subscribe", "resource":"/feeds/61916/datastreams/sine60"}');
});
ws.on('message', function(message) {
console.log('received: %s', message);
});
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment