Nuxt/lib/core/server.js

64 lines
1.4 KiB
JavaScript
Raw Normal View History

2017-06-18 18:27:24 +00:00
import http from 'http'
import chalk from 'chalk'
class Server {
constructor (nuxt) {
this.nuxt = nuxt
2017-06-11 14:17:36 +00:00
this.options = nuxt.options
// Initialize
2017-06-19 15:47:31 +00:00
/* istanbul ignore if */
2017-06-15 22:19:53 +00:00
if (nuxt.initialized) {
// If nuxt already initialized
this._ready = this.ready().catch(this.nuxt.errorHandler)
} else {
// Wait for hook
this.nuxt.plugin('afterInit', () => {
this._ready = this.ready()
return this._ready
})
}
2017-06-19 23:15:57 +00:00
// Stop server on nuxt.close()
this.nuxt.plugin('close', () => this.close())
2017-06-15 22:19:53 +00:00
}
2017-06-15 22:28:08 +00:00
async ready () {
2017-06-19 15:47:31 +00:00
/* istanbul ignore if */
2017-06-15 22:19:53 +00:00
if (this._ready) {
return this._ready
}
2017-06-19 23:15:57 +00:00
this.render = this.nuxt.renderer.app
this.server = http.createServer(this.render)
2017-06-15 22:19:53 +00:00
return this
}
listen (port, host) {
2017-06-11 13:49:01 +00:00
host = host || 'localhost'
port = port || 3000
2017-06-19 23:15:57 +00:00
return this.ready()
2017-06-15 22:19:53 +00:00
.then(() => {
this.server.listen(port, host, () => {
let _host = host === '0.0.0.0' ? 'localhost' : host
// eslint-disable-next-line no-console
2017-06-18 17:53:01 +00:00
console.log('\n' + chalk.bold(chalk.bgBlue.black(' OPEN ') + chalk.blue(` http://${_host}:${port}\n`)))
2017-06-15 22:19:53 +00:00
})
2017-06-19 23:15:57 +00:00
}).catch(this.nuxt.errorHandler)
}
2017-06-19 23:15:57 +00:00
close () {
return new Promise((resolve, reject) => {
this.server.close(err => {
if (err) {
return reject(err)
}
resolve()
})
})
2016-12-09 22:07:18 +00:00
}
}
2017-01-11 19:14:59 +00:00
export default Server