2016-10-06 11:05:52 +00:00
|
|
|
#!/usr/bin/env node
|
2016-10-17 01:49:33 +00:00
|
|
|
import { exec } from 'child_process'
|
2016-10-17 01:04:35 +00:00
|
|
|
import { resolve, join } from 'path'
|
2016-10-06 11:05:52 +00:00
|
|
|
import parseArgs from 'minimist'
|
2016-10-17 03:55:33 +00:00
|
|
|
import { exists } from 'mz/fs'
|
2016-10-06 11:05:52 +00:00
|
|
|
import Server from '../server'
|
2016-10-17 03:55:33 +00:00
|
|
|
import clean from '../server/build/clean'
|
2016-10-06 11:05:52 +00:00
|
|
|
|
|
|
|
const argv = parseArgs(process.argv.slice(2), {
|
|
|
|
alias: {
|
|
|
|
h: 'help',
|
|
|
|
p: 'port'
|
|
|
|
},
|
|
|
|
boolean: ['h'],
|
|
|
|
default: {
|
|
|
|
p: 3000
|
|
|
|
}
|
|
|
|
})
|
|
|
|
|
2016-10-17 01:49:33 +00:00
|
|
|
const open = url => {
|
|
|
|
const openers = { darwin: 'open', win32: 'start' }
|
|
|
|
const cmdName = openers[process.platform] || 'xdg-open'
|
|
|
|
exec(`${cmdName} ${url}`)
|
|
|
|
}
|
|
|
|
|
2016-10-06 11:05:52 +00:00
|
|
|
const dir = resolve(argv._[0] || '.')
|
|
|
|
|
2016-10-17 07:05:46 +00:00
|
|
|
clean(dir)
|
|
|
|
.then(async () => {
|
|
|
|
const srv = new Server({ dir, dev: true, hotReload: true })
|
2016-10-06 11:05:52 +00:00
|
|
|
await srv.start(argv.port)
|
2016-10-17 00:00:17 +00:00
|
|
|
console.log('> Ready on http://localhost:%d', argv.port)
|
2016-10-17 01:04:35 +00:00
|
|
|
|
|
|
|
// Check if pages dir exists and warn if not
|
2016-10-17 01:49:33 +00:00
|
|
|
if (!(await exists(join(dir, 'pages')))) {
|
2016-10-17 01:04:35 +00:00
|
|
|
if (await exists(join(dir, '..', 'pages'))) {
|
|
|
|
console.warn('> No `pages` directory found. Did you mean to run `next` in the parent (`../`) directory?')
|
|
|
|
} else {
|
|
|
|
console.warn('> Couldn\'t find a `pages` directory. Please create one under the project root')
|
|
|
|
}
|
|
|
|
}
|
2016-10-17 01:49:33 +00:00
|
|
|
|
|
|
|
if (!/^(false|0)$/i.test(process.env.NEXT_OPEN_BROWSER)) {
|
|
|
|
open(`http://localhost:${argv.port}`)
|
|
|
|
}
|
2016-10-06 11:05:52 +00:00
|
|
|
})
|
|
|
|
.catch((err) => {
|
|
|
|
console.error(err)
|
|
|
|
exit(1)
|
|
|
|
})
|