-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathmain.js
31 lines (23 loc) · 814 Bytes
/
main.js
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
#!/usr/bin/env node
var option = require('commander');
option
.version('0.1.0')
.usage('[options] <file ...>')
.option('-p, --port <n>', 'Set Port Number',(val)=>{return val}, 8080)
.option('-h, --host <s>', 'Set Host Address',(val)=>{return val}, 'localhost')
.option('-d, --dir <s>', 'Set Server Directory',(val)=>{return val}, '')
.option('-t, --test', 'Testing build')
.parse(process.argv);
try{
const express = require('express'),
opn = require('opn'),
php = require("node-php"),
path = require("path");
var app = express();
app.use("/", php.cgi(process.cwd()+"/"+option.dir));
app.listen(option.port, option.host);
console.log("Server listening http://"+ option.host + ":" +option.port);
opn('http://'+ option.host + ':'+option.port);
}catch(e){
console.error(e);
}