UNPKG

web-servo

Version:

Node HTTP web server that can execute node JS scripts

19 lines (10 loc) 191 B
/** * The main class */ var helper = function() { this.run(process.argv.slice(2)); }; helper.prototype.run = function(argv) { console.log(argv); }; new helper();