Node updated. Some todos.

This commit is contained in:
Norm Rasmussen
2024-09-23 20:52:09 -04:00
parent 8bfaca8375
commit f25622067f
2041 changed files with 124145 additions and 110445 deletions

View File

@ -15,45 +15,37 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
var __importDefault = (this && this.__importDefault) || function (mod) {
return (mod && mod.__esModule) ? mod : { "default": mod };
};
Object.defineProperty(exports, "__esModule", { value: true });
const browsers_1 = require("@puppeteer/browsers");
const argparse_1 = require("argparse");
exports.parseCommandLineArgs = parseCommandLineArgs;
const yargs_1 = __importDefault(require("yargs"));
const helpers_1 = require("yargs/helpers");
const WebSocketServer_js_1 = require("./WebSocketServer.js");
function parseArguments() {
const parser = new argparse_1.ArgumentParser({
add_help: true,
exit_on_error: true,
});
parser.add_argument('-c', '--channel', {
help: 'If set, the given installed Chrome Release Channel will be used ' +
'instead of one pointed by Puppeteer version',
choices: Object.values(browsers_1.ChromeReleaseChannel),
default: browsers_1.ChromeReleaseChannel.DEV,
});
parser.add_argument('--headless', {
help: 'Sets if browser should run in headless or headful mode. Default is true.',
default: true,
});
parser.add_argument('-p', '--port', {
help: 'Port that BiDi server should listen to. Default is 8080.',
type: 'int',
default: process.env['PORT'] ?? 8080,
});
parser.add_argument('-v', '--verbose', {
help: 'If present, the Mapper debug log, including CDP commands and events will be logged into the server output.',
action: 'store_true',
function parseCommandLineArgs() {
return (0, yargs_1.default)((0, helpers_1.hideBin)(process.argv))
.usage(`$0`, `[PORT=8080] [VERBOSE=8080]`)
.option('port', {
alias: 'p',
describe: 'Port that BiDi server should listen to. Default is 8080.',
type: 'number',
default: process.env['PORT'] ? Number(process.env['PORT']) : 8080,
})
.option('verbose', {
alias: 'v',
describe: 'If present, the Mapper debug log, including CDP commands and events will be logged into the server output.',
type: 'boolean',
default: process.env['VERBOSE'] === 'true' || false,
});
return parser.parse_known_args()[0];
})
.parseSync();
}
(() => {
try {
const args = parseArguments();
const { channel, port } = args;
const headless = args.headless !== 'false';
const verbose = args.verbose === true;
const argv = parseCommandLineArgs();
const { port, verbose } = argv;
(0, WebSocketServer_js_1.debugInfo)('Launching BiDi server...');
new WebSocketServer_js_1.WebSocketServer(port, channel, headless, verbose);
new WebSocketServer_js_1.WebSocketServer(port, verbose);
(0, WebSocketServer_js_1.debugInfo)('BiDi server launched');
}
catch (e) {