Skip to content

Commit

Permalink
Refactor dev server URL creation creation to use url.format (facebook…
Browse files Browse the repository at this point in the history
…#39503)

Summary:
Pull Request resolved: facebook#39503

Changelog: [Internal]

Reviewed By: blakef

Differential Revision: D49317314

fbshipit-source-id: 85b71340686a1cd19d63a7e73a5388a803d22c42
  • Loading branch information
huntie authored and Othinn committed Oct 30, 2023
1 parent 63079fb commit 79406e1
Show file tree
Hide file tree
Showing 2 changed files with 16 additions and 17 deletions.
16 changes: 6 additions & 10 deletions packages/community-cli-plugin/src/commands/start/runServer.js
Original file line number Diff line number Diff line change
Expand Up @@ -18,6 +18,7 @@ import chalk from 'chalk';
import Metro from 'metro';
import {Terminal} from 'metro-core';
import path from 'path';
import url from 'url';
import {createDevMiddleware} from '@react-native/dev-middleware';
import {
createDevServerMiddleware,
Expand Down Expand Up @@ -63,23 +64,18 @@ async function runServer(
projectRoot: args.projectRoot,
sourceExts: args.sourceExts,
});
const host = args.host?.length ? args.host : 'localhost';
const hostname = args.host?.length ? args.host : 'localhost';
const {
projectRoot,
server: {port},
watchFolders,
} = metroConfig;
const scheme = args.https === true ? 'https' : 'http';
const devServerUrl = `${scheme}://${host}:${port}`;
const protocol = args.https === true ? 'https' : 'http';
const devServerUrl = url.format({protocol, hostname, port});

logger.info(`Welcome to React Native v${ctx.reactNativeVersion}`);

const serverStatus = await isDevServerRunning(
scheme,
host,
port,
projectRoot,
);
const serverStatus = await isDevServerRunning(devServerUrl, projectRoot);

if (serverStatus === 'matched_server_running') {
logger.info(
Expand Down Expand Up @@ -109,7 +105,7 @@ async function runServer(
messageSocketEndpoint,
eventsSocketEndpoint,
} = createDevServerMiddleware({
host,
host: hostname,
port,
watchFolders,
});
Expand Down
17 changes: 10 additions & 7 deletions packages/community-cli-plugin/src/utils/isDevServerRunning.js
Original file line number Diff line number Diff line change
Expand Up @@ -23,19 +23,19 @@ import fetch from 'node-fetch';
* - `unknown`: An error was encountered; attempt server creation anyway.
*/
export default async function isDevServerRunning(
scheme: string,
host: string,
port: number,
devServerUrl: string,
projectRoot: string,
): Promise<
'not_running' | 'matched_server_running' | 'port_taken' | 'unknown',
> {
const {hostname, port} = new URL(devServerUrl);

try {
if (!(await isPortOccupied(host, port))) {
if (!(await isPortOccupied(hostname, port))) {
return 'not_running';
}

const statusResponse = await fetch(`${scheme}://${host}:${port}/status`);
const statusResponse = await fetch(`${devServerUrl}/status`);
const body = await statusResponse.text();

return body === 'packager-status:running' &&
Expand All @@ -47,7 +47,10 @@ export default async function isDevServerRunning(
}
}

async function isPortOccupied(host: string, port: number): Promise<boolean> {
async function isPortOccupied(
hostname: string,
port: string,
): Promise<boolean> {
let result = false;
const server = net.createServer();

Expand All @@ -67,6 +70,6 @@ async function isPortOccupied(host: string, port: number): Promise<boolean> {
server.once('close', () => {
resolve(result);
});
server.listen({host, port});
server.listen({host: hostname, port});
});
}

0 comments on commit 79406e1

Please sign in to comment.