提交 f93bacfa 编写于 作者: T Tim Neutkens 提交者: Naoyuki Kanezawa

Use minimist string option for hostname (#1090)

* Use minimist string option

* Consistently use --hostname

* Code style

* Show hostname
上级 c4a22abb
......@@ -14,9 +14,15 @@ const argv = parseArgs(process.argv.slice(2), {
p: 'port'
},
boolean: ['h'],
string: ['H'],
default: { p: 3000 }
})
if (argv.hostname === '') {
console.error(`> Provided hostname argument has no value`)
process.exit(1)
}
if (argv.help) {
console.log(`
Description
......@@ -50,11 +56,10 @@ if (!existsSync(resolve(dir, '.next', 'BUILD_ID'))) {
srv.start(argv.port, argv.hostname)
.then(() => {
if (!process.env.NOW) {
console.log(`> Ready on http://${argv.hostname && typeof argv.hostname !== 'boolean' ? argv.hostname : 'localhost'}:${argv.port}`)
console.log(`> Ready on http://${argv.hostname ? argv.hostname : 'localhost'}:${argv.port}`)
}
})
.catch((err) => {
console.error(err)
process.exit(1)
})
......@@ -130,11 +130,7 @@ export default class Server {
// This code catches EADDRINUSE error if the port is already in use
this.http.on('error', reject)
this.http.on('listening', () => resolve())
if (hostname && typeof hostname !== 'boolean') {
this.http.listen(port, hostname)
} else {
this.http.listen(port)
}
this.http.listen(port, hostname)
})
}
......
Markdown is supported
0% .
You are about to add 0 people to the discussion. Proceed with caution.
先完成此消息的编辑!
想要评论请 注册