1
0
Fork 0
mirror of https://github.com/terribleplan/next.js.git synced 2024-01-19 02:48:18 +00:00
next.js/packages/next/bin/next-start

55 lines
1.4 KiB
Plaintext
Raw Normal View History

2016-10-05 23:52:50 +00:00
#!/usr/bin/env node
2016-10-06 11:05:52 +00:00
import { resolve } from 'path'
2016-10-05 23:52:50 +00:00
import parseArgs from 'minimist'
import startServer from '../server/lib/start-server'
2016-10-05 23:52:50 +00:00
const argv = parseArgs(process.argv.slice(2), {
alias: {
h: 'help',
H: 'hostname',
2016-10-05 23:52:50 +00:00
p: 'port'
},
boolean: ['h'],
string: ['H'],
default: { p: 3000 }
2016-10-05 23:52:50 +00:00
})
if (argv.hostname === '') {
console.error(`> Provided hostname argument has no value`)
process.exit(1)
}
if (argv.help) {
console.log(`
Description
Starts the application in production mode.
The application should be compiled with \`next build\` first.
Usage
$ next start <dir> -p <port>
<dir> is the directory that contains the compiled dist folder
created by running \`next build\`.
If no directory is provided, the current directory will be assumed.
You can set a custom dist folder in config https://github.com/zeit/next.js#custom-configuration
Options
--port, -p A port number on which to start the application
--hostname, -H Hostname on which to start the application
--help, -h Displays this message
`)
process.exit(0)
}
2016-10-06 11:05:52 +00:00
const dir = resolve(argv._[0] || '.')
2016-10-05 23:52:50 +00:00
startServer({dir}, argv.port, argv.hostname)
.then(() => {
console.log(`> Ready on http://${argv.hostname ? argv.hostname : 'localhost'}:${argv.port}`)
})
.catch((err) => {
console.error(err)
process.exit(1)
})