Skip to content

Instantly share code, notes, and snippets.

View DeviNoles's full-sized avatar
📈
Grinding

DEVIN DeviNoles

📈
Grinding
View GitHub Profile
@DeviNoles
DeviNoles / Client.js
Created August 18, 2022 16:47 — 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