UNPKG
web-servo
Version:
latest (0.5.1)
0.5.1
0.5.0
0.4.1
0.4.0
0.3.3
0.3.2
0.3.1
0.3.0
0.2.0
0.1.2
0.1.1
0.1.0
Node HTTP web server that can execute node JS scripts
github.com/Komrod/web-servo
Komrod/web-servo
web-servo
/
helper.js
19 lines
(10 loc)
•
191 B
JavaScript
View Raw
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
/** * The main class */
var
helper =
function
(
) {
this
.
run
(process.
argv
.
slice
(
2
)); }; helper.
prototype
.
run
=
function
(
argv
) {
console
.
log
(argv); };
new
helper
();