Nuxt/lib/server.js

67 lines
1.6 KiB
JavaScript
Raw Normal View History

const http = require('http')
const connect = require('connect')
const path = require('path')
class Server {
constructor (nuxt) {
this.nuxt = nuxt
2017-06-11 14:17:36 +00:00
this.options = nuxt.options
// Initialize
this.app = connect()
this.server = http.createServer(this.app)
2017-06-13 17:58:04 +00:00
this.nuxt.init()
2017-06-11 14:17:36 +00:00
.then(() => {
// Add Middleware
this.options.serverMiddleware.forEach(m => {
this.useMiddleware(m)
})
// Add default render middleware
this.useMiddleware(this.render.bind(this))
})
return this
}
useMiddleware (m) {
// Require if needed
if (typeof m === 'string') {
let src = m
2017-05-21 17:18:48 +00:00
// Using ~ or ./ shorthand to resolve from project srcDir
if (src.indexOf('~') === 0 || src.indexOf('./') === 0) {
src = path.join(this.nuxt.options.srcDir, src.substr(1))
}
// eslint-disable-next-line no-eval
m = eval('require')(src)
}
if (m instanceof Function) {
this.app.use(m)
} else if (m && m.path && m.handler) {
this.app.use(m.path, m.handler)
}
}
render (req, res, next) {
this.nuxt.render(req, res)
return this
}
listen (port, host) {
2017-06-11 13:49:01 +00:00
host = host || 'localhost'
port = port || 3000
2017-06-13 17:58:04 +00:00
this.nuxt.init()
2017-06-11 13:49:01 +00:00
.then(() => {
this.server.listen(port, host, () => {
let _host = host === '0.0.0.0' ? 'localhost' : host
console.log('Ready on http://%s:%s', _host, port) // eslint-disable-line no-console
})
})
return this
}
2016-12-09 22:07:18 +00:00
close (cb) {
return this.server.close(cb)
}
}
2017-01-11 19:14:59 +00:00
export default Server