Dynamic port switching (#516)

This commit is contained in:
Kaveh Khorram 2018-04-10 08:48:44 -07:00 committed by Joel Marcey
parent 80ece69a10
commit bbbe311004
2 changed files with 31 additions and 20 deletions

View file

@ -37,14 +37,24 @@ const program = require('commander');
program.option('--port <number>', 'Specify port number').parse(process.argv); program.option('--port <number>', 'Specify port number').parse(process.argv);
const port = parseInt(program.port, 10) || 3000; var port = process.env.PORT || 3000;
var numAttempts = 0;
var maxAttempts = 10;
checkPort();
tcpPortUsed function checkPort() {
tcpPortUsed
.check(port, 'localhost') .check(port, 'localhost')
.then(function(inUse) { .then(function(inUse) {
if (inUse) { if (inUse && numAttempts >= maxAttempts) {
console.log("Reached max attempts, exiting. Please open up some ports or increase the number of attempts and try again.")
process.exit(1)
} else if (inUse) {
console.error(chalk.red('Port ' + port + ' is in use')); console.error(chalk.red('Port ' + port + ' is in use'));
process.exit(1); // Try again but with port + 1
port += 1;
numAttempts += 1;
checkPort();
} else { } else {
console.log('Starting Docusaurus server on port ' + port + '...'); console.log('Starting Docusaurus server on port ' + port + '...');
// start local server on specified port // start local server on specified port
@ -57,3 +67,4 @@ tcpPortUsed
throw ex; throw ex;
}, 0); }, 0);
}); });
}

View file

@ -14,7 +14,7 @@
"url": "https://github.com/facebook/Docusaurus.git" "url": "https://github.com/facebook/Docusaurus.git"
}, },
"scripts": { "scripts": {
"ci-check": "yarn prettier:diff", "ci-check": "yarn prettier && yarn prettier:diff",
"format:source": "prettier --config .prettierrc --write \"lib/**/*.js\"", "format:source": "prettier --config .prettierrc --write \"lib/**/*.js\"",
"format:examples": "prettier --config .prettierrc --write \"examples/**/*.js\"", "format:examples": "prettier --config .prettierrc --write \"examples/**/*.js\"",
"nit:source": "prettier --config .prettierrc --list-different \"lib/**/*.js\"", "nit:source": "prettier --config .prettierrc --list-different \"lib/**/*.js\"",