summaryrefslogtreecommitdiffstats
path: root/btc/btcguild
diff options
context:
space:
mode:
authortv <tv@also>2011-06-19 23:56:55 +0200
committertv <tv@also>2011-06-19 23:57:27 +0200
commit22b068e9bd62589e95baac2d977c7eb2292416e3 (patch)
tree9c2666f47ce0e13b59ac993429686df50dede912 /btc/btcguild
parent456efb1fd9817796e7cf70fc7113e2c3a2999e51 (diff)
btcguild: initial commit
Diffstat (limited to 'btc/btcguild')
-rw-r--r--btc/btcguild/index.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/btc/btcguild/index.js b/btc/btcguild/index.js
new file mode 100644
index 00000000..1f33db06
--- /dev/null
+++ b/btc/btcguild/index.js
@@ -0,0 +1,20 @@
+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);
+});