Skip to content

Commit

Permalink
feat(core, cli): builtin support of https and unix sockets (nuxt#3831)
Browse files Browse the repository at this point in the history
Co-authored-by: Aurélien Chrétien <aurelien@manager.one>
Co-authored-by: Rémy Sanchez <remy.sanchez@hyperthese.net>
  • Loading branch information
3 people authored and pi0 committed Sep 2, 2018
1 parent 4f6a048 commit 7247968
Show file tree
Hide file tree
Showing 15 changed files with 190 additions and 19 deletions.
19 changes: 19 additions & 0 deletions bin/common/utils.js
Original file line number Diff line number Diff line change
Expand Up @@ -52,3 +52,22 @@ exports.loadNuxtConfig = (argv) => {

return options
}

exports.getLatestHost = (argv) => {
const port =
argv.port ||
process.env.NUXT_PORT ||
process.env.PORT ||
process.env.npm_package_config_nuxt_port
const host =
argv.hostname ||
process.env.NUXT_HOST ||
process.env.HOST ||
process.env.npm_package_config_nuxt_host
const socket =
argv['unix-socket'] ||
process.env.UNIX_SOCKET ||
process.env.npm_package_config_unix_socket

return { port, host, socket }
}
6 changes: 3 additions & 3 deletions bin/nuxt-dev
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@ const parseArgs = require('minimist')
const consola = require('consola')
const { version } = require('../package.json')
const { Nuxt, Builder } = require('..')
const { loadNuxtConfig } = require('./common/utils')
const { loadNuxtConfig, getLatestHost } = require('./common/utils')

const argv = parseArgs(process.argv.slice(2), {
alias: {
Expand Down Expand Up @@ -75,7 +75,7 @@ const errorHandler = (err, instance) => {
}

// Get latest environment variables
const { port, host } = nuxt.options.server
const { port, host, socket } = getLatestHost(argv)

return (
Promise.resolve()
Expand All @@ -91,7 +91,7 @@ const errorHandler = (err, instance) => {
})
.then(() => oldInstance && oldInstance.nuxt.close())
// Start listening
.then(() => nuxt.listen(port, host))
.then(() => nuxt.listen(port, host, socket))
// Show ready message first time, others will be shown through WebpackBar
.then(() => !oldInstance && nuxt.showReady(false))
.then(() => builder.watchServer())
Expand Down
10 changes: 6 additions & 4 deletions bin/nuxt-start
Original file line number Diff line number Diff line change
Expand Up @@ -4,19 +4,20 @@ const { resolve } = require('path')
const parseArgs = require('minimist')
const consola = require('consola')
const { Nuxt } = require('../dist/nuxt-start')
const { loadNuxtConfig } = require('./common/utils')
const { loadNuxtConfig, getLatestHost } = require('./common/utils')

const argv = parseArgs(process.argv.slice(2), {
alias: {
h: 'help',
H: 'hostname',
p: 'port',
n: 'unix-socket',
c: 'config-file',
s: 'spa',
u: 'universal'
},
boolean: ['h', 's', 'u'],
string: ['H', 'c'],
string: ['H', 'c', 'n'],
default: {
c: 'nuxt.config.js'
}
Expand All @@ -36,6 +37,7 @@ if (argv.help) {
Options
--port, -p A port number on which to start the application
--hostname, -H Hostname on which to start the application
--unix-socket, -n Path to a UNIX socket
--spa Launch in SPA mode
--universal Launch in Universal mode (default)
--config-file, -c Path to Nuxt.js config file (default: nuxt.config.js)
Expand Down Expand Up @@ -77,8 +79,8 @@ if (nuxt.options.render.ssr === true) {
}
}

const { port, host } = nuxt.options.server
const { port, host, socket } = getLatestHost(argv)

nuxt.listen(port, host).then(() => {
nuxt.listen(port, host, socket).then(() => {
nuxt.showReady(false)
})
1 change: 1 addition & 0 deletions lib/common/nuxt.config.js
Original file line number Diff line number Diff line change
Expand Up @@ -16,6 +16,7 @@ export default {

// Server options
server: {
https: false,
port: process.env.NUXT_PORT ||
process.env.PORT ||
process.env.npm_package_config_nuxt_port,
Expand Down
66 changes: 54 additions & 12 deletions lib/core/nuxt.js
Original file line number Diff line number Diff line change
@@ -1,5 +1,6 @@
import Module from 'module'
import { resolve, join } from 'path'
import https from 'https'

import enableDestroy from 'server-destroy'
import _ from 'lodash'
Expand Down Expand Up @@ -141,26 +142,63 @@ export default class Nuxt {
this.readyMessage = null
}

listen(port = 3000, host = 'localhost') {
listen(port = 3000, host = 'localhost', socket = null) {
return this.ready().then(() => new Promise((resolve, reject) => {
const server = this.renderer.app.listen(
{ port, host, exclusive: false },
if (!socket && typeof this.options.server.socket === 'string') {
socket = this.options.server.socket
}

const args = { exclusive: false }

if (socket) {
args.path = socket
} else {
args.port = port
args.host = host
}

let appServer
const isHttps = Boolean(this.options.server.https)

if (isHttps) {
let httpsOptions

if (this.options.server.https === true) {
httpsOptions = {}
} else {
httpsOptions = this.options.server.https
}

appServer = https.createServer(httpsOptions, this.renderer.app)
} else {
appServer = this.renderer.app
}

const server = appServer.listen(
args,
(err) => {
/* istanbul ignore if */
if (err) {
return reject(err)
}

({ address: host, port } = server.address())
if (host === '127.0.0.1') {
host = 'localhost'
} else if (host === '0.0.0.0') {
host = ip.address()
let listenURL

if (!socket) {
({ address: host, port } = server.address())
if (host === '127.0.0.1') {
host = 'localhost'
} else if (host === '0.0.0.0') {
host = ip.address()
}

listenURL = chalk.underline.blue(`http${isHttps ? 's' : ''}://${host}:${port}`)
this.readyMessage = `Listening on ${listenURL}`
} else {
listenURL = chalk.underline.blue(`unix+http://${socket}`)
this.readyMessage = `Listening on ${listenURL}`
}

const listenURL = chalk.underline.blue(`http://${host}:${port}`)
this.readyMessage = `Listening on ${listenURL}`

// Close server on nuxt close
this.hook(
'close',
Expand All @@ -178,7 +216,11 @@ export default class Nuxt {
})
)

this.callHook('listen', server, { port, host }).then(resolve)
if (socket) {
this.callHook('listen', server, { path: socket }).then(resolve)
} else {
this.callHook('listen', server, { port, host }).then(resolve)
}
}
)

Expand Down
3 changes: 3 additions & 0 deletions test/fixtures/https/https.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { buildFixture } from '../../utils/build'

buildFixture('https')
11 changes: 11 additions & 0 deletions test/fixtures/https/nuxt.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,11 @@
import fs from 'fs'
import path from 'path'

export default {
server: {
https: {
key: fs.readFileSync(path.resolve(__dirname, 'server.key')),
cert: fs.readFileSync(path.resolve(__dirname, 'server.crt'))
}
}
}
3 changes: 3 additions & 0 deletions test/fixtures/https/pages/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<h1>Served over HTTPS!</h1>
</template>
19 changes: 19 additions & 0 deletions test/fixtures/https/server.crt
Original file line number Diff line number Diff line change
@@ -0,0 +1,19 @@
-----BEGIN CERTIFICATE-----
MIIDIjCCAougAwIBAgIJALww5SutcTujMA0GCSqGSIb3DQEBCwUAMGoxCzAJBgNV
BAYTAkJSMRIwEAYDVQQIEwlTYW8gUGF1bG8xETAPBgNVBAcTCEJhcnJldG9zMQ0w
CwYDVQQKEwROdXh0MREwDwYDVQQLEwhGaXh0dXJlczESMBAGA1UEAxMJbG9jYWxo
b3N0MB4XDTE4MDkwMTIzMTk0OVoXDTE4MTAwMTIzMTk0OVowajELMAkGA1UEBhMC
QlIxEjAQBgNVBAgTCVNhbyBQYXVsbzERMA8GA1UEBxMIQmFycmV0b3MxDTALBgNV
BAoTBE51eHQxETAPBgNVBAsTCEZpeHR1cmVzMRIwEAYDVQQDEwlsb2NhbGhvc3Qw
gZ8wDQYJKoZIhvcNAQEBBQADgY0AMIGJAoGBALoFJlquH9KNTPS3E0jbdKWLVw+N
oQaV+yPGPJb/IEAtg2cgMy62UlBS8eMTnMAv6JntuSuqS9wWdrvrTvcJkbbCRnKp
P13OTPpzhXO8R9pgzsopaO0DfLM8mTpFi1UPhzRm5riRCVIcg/KYH5JybI7LVzVu
v6LT3DhOtqp3tufRAgMBAAGjgc8wgcwwHQYDVR0OBBYEFIHCFtBMyB2w+os85zPR
AkI05z4FMIGcBgNVHSMEgZQwgZGAFIHCFtBMyB2w+os85zPRAkI05z4FoW6kbDBq
MQswCQYDVQQGEwJCUjESMBAGA1UECBMJU2FvIFBhdWxvMREwDwYDVQQHEwhCYXJy
ZXRvczENMAsGA1UEChMETnV4dDERMA8GA1UECxMIRml4dHVyZXMxEjAQBgNVBAMT
CWxvY2FsaG9zdIIJALww5SutcTujMAwGA1UdEwQFMAMBAf8wDQYJKoZIhvcNAQEL
BQADgYEARaylCmK13yfaARc3utZLmD+vW7P1S4CO25skgaaQasKsKtABTURz92Ju
fShBFvP6d8AQH3yvHEC2+QBUibg6tc9oT1hE1GXYczp11AvYry3hcbalB+V1vqN+
/vMAWDmg5Y0cE/QnJ8YZi2fHFoxkxJdDIfx5/w19vvE5h18IMro=
-----END CERTIFICATE-----
15 changes: 15 additions & 0 deletions test/fixtures/https/server.key
Original file line number Diff line number Diff line change
@@ -0,0 +1,15 @@
-----BEGIN RSA PRIVATE KEY-----
MIICXAIBAAKBgQC6BSZarh/SjUz0txNI23Sli1cPjaEGlfsjxjyW/yBALYNnIDMu
tlJQUvHjE5zAL+iZ7bkrqkvcFna76073CZG2wkZyqT9dzkz6c4VzvEfaYM7KKWjt
A3yzPJk6RYtVD4c0Zua4kQlSHIPymB+ScmyOy1c1br+i09w4Traqd7bn0QIDAQAB
AoGAWZpBb0yQZ4tIllfZIi8TcOo9dXBzMAjuf7ztUo5xqnhB41rPTKDl5WsOuKKp
zqlFEWBA4ZeWEt1/M+WUk8o4NU2M03Q5N7cubw2T6/q43pZkCjvdTScsP6sJgGK9
zR0o4+Owu9J5j+X9e7ChfZFVeZa3WCX6dCB17AVfUdCh7EECQQDpPdkLirOsiu5x
/b42+/dLpL4gq+mnAqLzaeHI0Eb2Gt9A8RyxPicdjZGOJ3bmGZPFWcu2xUbmEsic
pSbAmZujAkEAzCvBLokZ2ETJN1pZJgT3luUDmd6LsaW8BJoJ42ECM/k8ARKMJfIS
/tqZPJhdkZ6JhYc36m4lNwPaY7x4Cbxl+wJBAM1WBZ6DnWppZUI1gSAm8q9FeZyJ
vEmrqIlizcNcmRxQy/sASaJAdW8vEtVzKNmp6s3zH8ToKGKkZriBLHyivsECQALF
zVfOcNVpCbqAtZk4lAwui//477i34XfGh7/Yv2jpR5FUKScSxINFgLM79nlVx9RS
Y8YBPOwkV0DnfFHVhyUCQFYYp2B8XgghJGapOcWvp7QogkDWqCra5mrSlI+jzi5W
b1LjJqCCCq4kGK6nKEzT7gd75lb2LbcUdc5JfFHbcE0=
-----END RSA PRIVATE KEY-----
7 changes: 7 additions & 0 deletions test/fixtures/sockets/nuxt.config.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,7 @@
import path from 'path'

export default {
server: {
socket: path.resolve(__dirname, 'nuxt.socket')
}
}
3 changes: 3 additions & 0 deletions test/fixtures/sockets/pages/index.vue
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
<template>
<h1>Served over sockets!</h1>
</template>
3 changes: 3 additions & 0 deletions test/fixtures/sockets/sockets.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
import { buildFixture } from '../../utils/build'

buildFixture('sockets')
22 changes: 22 additions & 0 deletions test/unit/https.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,22 @@
import { loadFixture, getPort, Nuxt } from '../utils'

let nuxt = null

describe('basic https', () => {
beforeAll(async () => {
const options = await loadFixture('https')
nuxt = new Nuxt(options)
const port = await getPort()
await nuxt.listen(port, '0.0.0.0')
})

test('/', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<h1>Served over HTTPS!</h1>')).toBe(true)
})

// Close server and ask nuxt to stop listening to file changes
afterAll(async () => {
await nuxt.close()
})
})
21 changes: 21 additions & 0 deletions test/unit/sockets.test.js
Original file line number Diff line number Diff line change
@@ -0,0 +1,21 @@
import { loadFixture, Nuxt } from '../utils'

let nuxt = null

describe.skip.appveyor('basic sockets', () => {
beforeAll(async () => {
const options = await loadFixture('sockets')
nuxt = new Nuxt(options)
await nuxt.listen()
})

test('/', async () => {
const { html } = await nuxt.renderRoute('/')
expect(html.includes('<h1>Served over sockets!</h1>')).toBe(true)
})

// Close server and ask nuxt to stop listening to file changes
afterAll(async () => {
await nuxt.close()
})
})

0 comments on commit 7247968

Please sign in to comment.