From c37ab9c4accc58919e87ad4eee1ef19f49eed873 Mon Sep 17 00:00:00 2001 From: tv Date: Wed, 24 Aug 2011 16:45:00 +0200 Subject: {btc -> gold} SC & co., we're ready --- btc/btcguild/index.js | 20 -------------------- 1 file changed, 20 deletions(-) delete mode 100644 btc/btcguild/index.js (limited to 'btc/btcguild') diff --git a/btc/btcguild/index.js b/btc/btcguild/index.js deleted file mode 100644 index 1f33db06..00000000 --- a/btc/btcguild/index.js +++ /dev/null @@ -1,20 +0,0 @@ -api_key = process.env.api_key; - -var options = { - host: 'www.btcguild.com', - port: 80, - path: '/api.php?api_key=' + api_key -}; - -http = require('http'); -http.get(options, function(res) { - var data = ''; - res.on('data', function (chunk) { - data += chunk; - }); - res.on('end', function () { - console.log(JSON.parse(data)); - }); -}).on('error', function(e) { - console.error('Error: ' + e.message); -}); -- cgit v1.2.3