Nuxt/lib/server.js

60 lines
1.3 KiB
JavaScript
Raw Normal View History

'use strict'
const http = require('http')
const connect = require('connect')
const path = require('path')
class Server {
constructor (nuxt) {
this.nuxt = nuxt
// Initialize
this.app = connect()
this.server = http.createServer(this.app)
// Add Middleware
this.nuxt.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
// Using ~ shorthand to resolve from project srcDir
if (src.indexOf('~') === 0) {
src = path.resolve(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) {
host = host || '127.0.0.1'
port = port || 3000
this.server.listen(port, host, () => {
2016-12-08 15:41:20 +00:00
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