-
Notifications
You must be signed in to change notification settings - Fork 6
/
index.js
38 lines (32 loc) · 965 Bytes
/
index.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
/* eslint-env node */
'use strict'
const express = require('express')
const minimist = require('minimist')
const open = require('open')
const os = require('os')
const path = require('path')
const extraRoutes = require('./your-server-code')
const DEFAULT_PORT = 4001
const argv = minimist(process.argv.slice(2), {
boolean: ['open'],
string: ['port'],
default: {
open: true,
port: String(DEFAULT_PORT)
}
})
const app = express()
app.use('/fingerprint.js', express.static(path.join(__dirname, 'fingerprint.js'), { redirect: false }))
app.use(express.static('public'))
app.use(extraRoutes)
app.listen(argv.port, '0.0.0.0', () => {
console.log('Server running on:')
const url = `http://localhost:${argv.port}/`
console.log(` ${url}`)
for (const iface of Object.values(os.networkInterfaces()).flat(1)) {
if (iface.family === 'IPv4') {
console.log(` http://${iface.address}:${argv.port}/`)
}
}
if (argv.open) open(url)
})