mirror of
https://github.com/nuxt/nuxt.git
synced 2024-11-06 06:03:58 +00:00
30 lines
491 B
JavaScript
30 lines
491 B
JavaScript
'use strict'
|
|
|
|
const http = require('http')
|
|
|
|
class Server {
|
|
|
|
constructor (nuxt) {
|
|
this.nuxt = nuxt
|
|
this.server = http.createServer(this.render.bind(this))
|
|
return this
|
|
}
|
|
|
|
render (req, res) {
|
|
this.nuxt.render(req, res)
|
|
return this
|
|
}
|
|
|
|
listen (port, host) {
|
|
host = host || 'localhost'
|
|
port = port || 3000
|
|
this.server.listen(port, host, () => {
|
|
console.log('Ready on http://%s:%s', host, port)
|
|
})
|
|
return this
|
|
}
|
|
|
|
}
|
|
|
|
module.exports = Server
|