Skip to content

Instantly share code, notes, and snippets.

View KenguruKleo's full-sized avatar

Konstantin Yemelianov KenguruKleo

  • Germany, Berlin
View GitHub Profile
@KenguruKleo
KenguruKleo / Client.js
Created June 2, 2018 14:09 — forked from roccomuso/Client.js
Node.js remote shell example
var net = require('net')
var readline = require('readline')
/**
* @class Client
* @param host {String} the host
* @param post {Integer} the port
*/
function Client (host, port) {
this.host = host