forked from fasttime/Polytype
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathserve.js
executable file
·86 lines (79 loc) · 2.11 KB
/
serve.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
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
#!/usr/bin/env node
/* eslint-env node */
'use strict';
const chalk = require('chalk');
const { createReadStream } = require('fs');
const { createServer } = require('http');
const { networkInterfaces } = require('os');
const { extname, join } = require('path');
const mimeTypes =
{
'.css': 'text/css',
'.html': 'text/html',
'.js': 'application/javascript',
'.mjs': 'application/javascript',
};
const port = 8080;
createServer
(
(request, response) =>
{
const requestUrl = request.url.replace(/\?[^]*/, '');
const pathname = join(__dirname, requestUrl);
const stream = createReadStream(pathname);
stream.on
(
'open',
() =>
{
const headers = { };
{
const ext = extname(requestUrl);
if (mimeTypes.hasOwnProperty(ext))
headers['Content-Type'] = mimeTypes[ext];
}
response.writeHead(200, headers);
stream.pipe(response);
},
);
stream.on
(
'error',
() =>
{
response.writeHead(404);
response.end();
},
);
},
)
.listen(port);
{
const ip = getIP();
if (ip)
{
const baseUrl = `http://${ip}:${port}`;
console.log
(`\n${chalk.bold('Spec Runner URL')}\n${chalk.blue(`${baseUrl}/test/spec-runner.html`)}\n`);
}
}
function getIP()
{
let ip;
const networkInterfaceList = Object.values(networkInterfaces());
for (const networkInterface of networkInterfaceList)
{
for (const assignedNetworkAddress of networkInterface)
{
if (!assignedNetworkAddress.internal)
{
let { address } = assignedNetworkAddress;
if (assignedNetworkAddress.family !== 'IPv4')
address = `[${address}]`;
if (!ip || ip.length > address.length)
ip = address;
}
}
}
return ip;
}