Nuxt/bin/nuxt-dev

114 lines
3.1 KiB
Plaintext
Raw Normal View History

#!/usr/bin/env node
2016-11-10 14:24:22 +00:00
// Show logs
process.env.DEBUG = 'nuxt:*'
2017-06-16 12:42:45 +00:00
const _ = require('lodash')
const debug = require('debug')('nuxt:build')
2016-12-15 17:48:31 +00:00
debug.color = 2 // force green color
2017-06-16 12:42:45 +00:00
const fs = require('fs')
const parseArgs = require('minimist')
const { Nuxt, Server, Builder } = require('../')
2017-06-16 12:42:45 +00:00
const chokidar = require('chokidar')
const resolve = require('path').resolve
2017-06-16 12:42:45 +00:00
const argv = parseArgs(process.argv.slice(2), {
2017-06-11 13:48:20 +00:00
alias: {
h: 'help',
H: 'hostname',
p: 'port',
c: 'config-file'
},
boolean: ['h'],
string: ['H', 'c'],
default: {
c: 'nuxt.config.js'
}
})
2017-06-11 13:48:20 +00:00
if (argv.hostname === '') {
console.error(`> Provided hostname argument has no value`)
process.exit(1)
}
2017-06-11 13:48:20 +00:00
if (argv.help) {
console.log(`
Description
Starts the application in development mode (hot-code reloading, error
reporting, etc)
Usage
$ nuxt dev <dir> -p <port number> -H <hostname>
Options
--port, -p A port number on which to start the application
--hostname, -H Hostname on which to start the application
--config-file, -c Path to Nuxt.js config file (default: nuxt.config.js)
--help, -h Displays this message
`)
process.exit(0)
}
2017-06-16 12:42:45 +00:00
const rootDir = resolve(argv._[0] || '.')
const nuxtConfigFile = resolve(rootDir, argv['config-file'])
2016-12-07 17:47:47 +00:00
2016-12-09 18:40:59 +00:00
var options = {}
if (fs.existsSync(nuxtConfigFile)) {
options = require(nuxtConfigFile)
2017-06-11 13:48:20 +00:00
} else if (argv['config-file'] !== 'nuxt.config.js') {
console.error(`> Could not load config file ${argv['config-file']}`)
process.exit(1)
}
if (typeof options.rootDir !== 'string') {
options.rootDir = rootDir
}
2017-06-11 13:48:20 +00:00
// Force development mode: add hot reloading and watching changes
options.dev = true
2016-11-10 01:19:47 +00:00
2017-06-16 12:42:45 +00:00
const nuxt = new Nuxt(options)
const builder = new Builder(nuxt)
2017-06-16 12:42:45 +00:00
const port = argv.port || process.env.PORT || process.env.npm_package_config_nuxt_port
const host = argv.hostname || process.env.HOST || process.env.npm_package_config_nuxt_host
const server = new Server(nuxt)
server.listen(port, host)
2017-02-08 13:09:59 +00:00
builder.build().then(() => {
listenOnConfigChanges(nuxt, server)
})
2017-06-16 12:42:45 +00:00
function listenOnConfigChanges (nuxt, server) {
// Listen on nuxt.config.js changes
2017-06-16 12:42:45 +00:00
const build = _.debounce(() => {
debug('[nuxt.config.js] changed')
delete require.cache[nuxtConfigFile]
var options = {}
if (fs.existsSync(nuxtConfigFile)) {
try {
options = require(nuxtConfigFile)
} catch (e) {
return console.error(e) // eslint-disable-line no-console
}
}
if (typeof options.rootDir !== 'string') {
options.rootDir = rootDir
}
nuxt.close()
.then(() => {
debug('Rebuilding the app...')
2017-06-16 12:42:45 +00:00
const nuxt = new Nuxt(options)
const builder = new Builder(nuxt)
server.nuxt = nuxt
return builder.build()
})
.catch((error) => {
console.error('Error while rebuild the app:', error) // eslint-disable-line no-console
process.exit(1)
})
}, 200)
2017-06-11 13:48:20 +00:00
chokidar.watch(nuxtConfigFile, Object.assign({}, nuxt.options.watchers.chokidar, { ignoreInitial: true }))
.on('all', build)
}
module.exports = nuxt