dbgproxy
Version:
DBGp (Common DeBugGer Protocol) Socket.IO proxy
22 lines (17 loc) • 605 B
JavaScript
/*
* DBGp (Common DeBugGer Protocol) Socket.IO proxy
* Copyright (c) Dan Phillimore (asmblah)
* https://github.com/uniter/dbgproxy/
*
* Released under the MIT license
* https://github.com/uniter/dbgproxy/raw/master/MIT-LICENSE.txt
*/
;
/*
* Proxy client - connects to the server from inside the browser
*/
var socketIOClient = require('socket.io-client'),
Client = require('./src/Client'),
ClientFactory = require('./src/ClientFactory'),
IdeConnection = require('./src/Client/IdeConnection');
module.exports = new ClientFactory(Client, IdeConnection, socketIOClient);