This commit is contained in:
Norbert de Langen 2020-03-18 16:53:51 +01:00
parent 0a50d7d86d
commit b4857c7022
No known key found for this signature in database
GPG Key ID: 976651DA156C2825

View File

@ -55,16 +55,15 @@ const useLocation = async path => {
app.use(express.static(path));
const freePort = await getPort();
const port = await getPort();
return new Promise((resolve, reject) => {
const server = app.listen(freePort, e => {
const server = app.listen(port, e => {
if (e) {
reject(e);
}
const { address, port } = server.address();
const result = typeof address === 'string' ? address : `http://localhost:${port}/iframe.html`;
const result = `http://localhost:${port}/iframe.html`;
console.log(`connecting to: ${result}`);