zioinfo-mail/app/node_modules/@rnx-kit/chromium-edge-launcher/README.md
DESKTOP-TKLFCPR\ython 11c670f2a0 refactor: 101.79.17.164 → zioinfo.co.kr 전체 도메인 변환 + Manager UI 배포
- 37개 파일 IP → zioinfo.co.kr 치환 (소스/매뉴얼/설정/하네스)
- Manager DrConsole/NetworkConsole/CsapConsole 빌드 + /var/www/manager/ 배포
- 테스트: Manager HTTP 200, ITSM 신규 API 7개 전체 200

Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
2026-05-31 10:09:17 +09:00

207 lines
6.2 KiB
Markdown
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

# Edge Launcher
<img src="https://user-images.githubusercontent.com/4672033/107800563-adb9ce00-6d3d-11eb-8425-2256d0278894.png" align=right height=200>
Launch Microsoft Edge with ease from node.
- [Disables many Edge services](https://github.com/microsoft/rnx-kit/incubator/chromium-edge-launcher/blob/main/src/flags.ts)
that add noise to automated scenarios
- Opens up the browser's `remote-debugging-port` on an available port
- Automagically locates a Edge binary to launch
- Uses a fresh Edge profile for each launch, and cleans itself up on `kill()`
- Binds `Ctrl-C` (by default) to terminate the Edge process
- Exposes a small set of [options](#api) for configurability over these details
> \_This project started as a fork of
> [Chrome Launcher](https://github.com/GoogleChrome/chrome-launcher) and
> inherits, whereas possible, all its features.
### Installing
```sh
yarn add @rnx-kit/chromium-edge-launcher
# or with npm:
npm install @rnx-kit/chromium-edge-launcher
```
## API
### `.launch([opts])`
#### Launch options
```js
{
// (optional) remote debugging port number to use. If provided port is already busy, launch() will reject
// Default: an available port is autoselected
port: number;
// (optional) Additional flags to pass to Edge, for example: ['--headless', '--disable-gpu']
// See: https://github.com/microsoft/rnx-kit/incubator/chromium-edge-launcher/blob/main/docs/edge-flags-for-tools.md
// Do note, many flags are set by default: https://github.com/microsoft/rnx-kit/incubator/chromium-edge-launcher/blob/main/src/flags.ts
edgeFlags: Array<string>;
// (optional) Close the Edge process on `Ctrl-C`
// Default: true
handleSIGINT: boolean;
// (optional) Explicit path of intended Edge binary
 // * If this `edgePath` option is defined, it will be used.
// * Otherwise, the `EDGE_PATH` env variable will be used if set. (`LIGHTHOUSE_CHROMIUM_PATH` is deprecated)
 // * Otherwise, a detected Edge Canary will be used if found
// * Otherwise, a detected Edge (stable) will be used
edgePath: string;
// (optional) Edge profile path to use, if set to `false` then the default profile will be used.
// By default, a fresh Edge profile will be created
userDataDir: string | boolean;
// (optional) Starting URL to open the browser with
// Default: `about:blank`
startingUrl: string;
// (optional) Logging level
// Default: 'silent'
logLevel: 'verbose'|'info'|'error'|'silent';
// (optional) Flags specific in [flags.ts](src/flags.ts) will not be included.
// Typically used with the defaultFlags() method and edgeFlags option.
// Default: false
ignoreDefaultFlags: boolean;
// (optional) Interval in ms, which defines how often launcher checks browser port to be ready.
// Default: 500
connectionPollInterval: number;
// (optional) A number of retries, before browser launch considered unsuccessful.
// Default: 50
maxConnectionRetries: number;
// (optional) A dict of environmental key value pairs to pass to the spawned edge process.
envVars: {[key: string]: string};
};
```
#### Launched edge interface
#### `.launch().then(edge => ...`
```js
// The remote debugging port exposed by the launched edge
edge.port: number;
// Method to kill Edge (and cleanup the profile folder)
edge.kill: () => Promise<void>;
// The process id
edge.pid: number;
// The childProcess object for the launched Edge
edge.process: childProcess
```
### `EdgeLauncher.Launcher.defaultFlags()`
Returns an `Array<string>` of the default [flags](docs/edge-flags-for-tools.md)
Edge is launched with. Typically used along with the `ignoreDefaultFlags` and
`edgeFlags` options.
Note: This array will exclude the following flags: `--remote-debugging-port`
`--disable-setuid-sandbox` `--user-data-dir`.
### `EdgeLauncher.Launcher.getInstallations()`
Returns an `Array<string>` of paths to available Edge installations. When
`edgePath` is not provided to `.launch()`, the first installation returned from
this method is used instead.
Note: This method performs synchronous I/O operations.
### `.killAll()`
Attempts to kill all Edge instances created with
[`.launch([opts])`](#launchopts). Returns a Promise that resolves to an array of
errors that occurred while killing instances. If all instances were killed
successfully, the array will be empty.
```js
const EdgeLauncher = require("@rnx-kit/chromium-edge-launcher");
async function cleanup() {
await EdgeLauncher.killAll();
}
```
## Examples
#### Launching edge:
```js
const EdgeLauncher = require("@rnx-kit/chromium-edge-launcher");
EdgeLauncher.launch({
startingUrl: "https://google.com",
}).then((edge) => {
console.log(`Edge debugging port running on ${edge.port}`);
});
```
#### Launching headless edge:
```js
const EdgeLauncher = require("@rnx-kit/chromium-edge-launcher");
EdgeLauncher.launch({
startingUrl: "https://google.com",
edgeFlags: ["--headless", "--disable-gpu"],
}).then((edge) => {
console.log(`Edge debugging port running on ${edge.port}`);
});
```
#### Launching with support for extensions and audio:
```js
const EdgeLauncher = require('@rnx-kit/chromium-edge-launcher');
const newFlags = EdgeLauncher.Launcher.defaultFlags().filter(flag => flag !== '--disable-extensions' && flag !== '--mute-audio');
EdgeLauncher.launch({
ignoreDefaultFlags: true,
edgeFlags: newFlags,
}).then(edge => { ... });
```
### Continuous Integration
In a CI environment like Travis, Edge may not be installed. If you want to use
`@rnx-kit/chromium-edge-launcher`, Travis can
[install Edge at run time with an addon](https://docs.travis-ci.com/user/edge).
Alternatively, you can also install Edge using the
[`download-edge.sh`](https://raw.githubusercontent.com/cezaraugusto/chromium-edge-launcher/v0.8.0/scripts/download-edge.sh)
script.
Then in `.travis.yml`, use it like so:
```yaml
language: node_js
install:
- yarn install
before_script:
- export DISPLAY=:99.0
- export CHROME_PATH="$(pwd)/edge-linux/edge"
- sh -e /etc/init.d/xvfb start
- sleep 3 # wait for xvfb to boot
addons:
edge: stable
```
### Acknowledgements
This project is a fork of https://github.com/cezaraugusto/chromium-edge-launcher
which started as a fork of, and is inspired by
https://github.com/cezaraugusto/chromium-edge-launcher which is released under
the Apache-2.0 License, and is copyright of Google Inc.