Skip to content

Instantly share code, notes, and snippets.

View Minthos's full-sized avatar

Minthos

View GitHub Profile
@xCoreDev
xCoreDev / trollbox.js
Last active August 30, 2016 22:28
Node.JS - Quick & Dirty Poloniex Trollbox IRC Relay. Debian/Ubuntu: apt-get install libicu-dev / NPM Modules: npm install autobahn ent irc irc-colors
var autobahn = require('autobahn');
var ent = require('ent');
var irc = require('irc');
var c = require('irc-colors');
var wsuri = "wss://api.poloniex.com";
var connection = new autobahn.Connection({
url: wsuri,
realm: "realm1"
});