-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathserver.js
47 lines (40 loc) · 946 Bytes
/
server.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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
/* eslint-disable no-console */
import localhost from './index.js';
import portfinder from 'portfinder';
import minimist from 'minimist';
import readline from 'readline';
const argv = minimist(process.argv.slice(2));
const port = argv.p || parseInt(process.env.PORT);
const dir = argv._.pop() || './';
if (!port) {
portfinder.basePort = 8080;
portfinder.getPort((err, port) => {
if (err) {
throw err;
}
listen(port);
});
}
else {
listen(port);
}
function listen(port) {
localhost(dir).listen(port);
console.log(`Starting //localhost${port !== 80 ? `:${port}` : ''}`);
}
if (process.platform === 'win32') {
readline.createInterface({
input: process.stdin,
output: process.stdout
}).on('SIGINT', () => {
process.emit('SIGINT');
});
}
process.on('SIGINT', () => {
console.info('localhost stopped.'.red);
process.exit();
});
process.on('SIGTERM', () => {
console.info('localhost stopped.'.red);
process.exit();
});