Electron Updater API Reference
__CAPGO_KEEP_4__
__CAPGO_KEEP_11__
기본 메서드
기본 메서드 섹션notifyAppReady()
notifyAppReady() 섹션모든 앱 런치 시 호출해야 함. 성공적으로 패키지 로드되었는지 확인하고 자동 롤백을 방지합니다.
await updater.notifyAppReady();download(options)
다운로드(옵션)URL에서 배ंडल을 다운로드합니다.
const bundle = await updater.download({ url: 'https://example.com/bundle.zip', version: '1.0.1', checksum: 'sha256-hash', // Optional but recommended sessionKey: '...', // For encrypted bundles});매개 변수:
| 옵션 | 타입 | 필수 | 설명 |
|---|---|---|---|
url | string | 네 | 다운로드할 배ंडल의 URL |
version | string | 네 | __CAPGO_KEEP_0__ |
checksum | 묶음의 버전 식별자 | 문자열 | 아니오 |
sessionKey | __CAPGO_KEEP_0__ | SHA256 검증을 위한 체크섬 | 문자열 |
아니오 BundleInfo 암호화된 묶음의 세션 키 id, version, status
다음 앱 재시작 시 배포를 로드하기 위해 큐합니다.
await updater.next({ id: 'bundle-id' });매개 변수:
| 선택 | 타입 | 필수 | 설명 |
|---|---|---|---|
id | 문자열 | 예 | 배포 ID를 큐합니다. |
set(options)
설정 제목 “set(options)”즉시 번들 Switch로 전환하고 앱을 다시 로드합니다.
await updater.set({ id: 'bundle-id' });매개 변수:
| 선택 | 타입 | 필수 | 설명 |
|---|---|---|---|
id | 문자열 | 예 | 활성화할 번들 ID |
reload()
reload() 섹션현재 번들을 사용하여 앱을 수동으로 다시 로드합니다.
await updater.reload();delete(options)
delete(options) 섹션스토리지에서 번들을 삭제합니다.
await updater.delete({ id: 'bundle-id' });매개 변수:
| 옵션 | 타입 | 필수 | 설명 |
|---|---|---|---|
id | 문자열 | Yes | 삭제할 Bundle ID |
reset(options)
"reset(options)" 섹션기본 버전 또는 마지막 성공적인 배포로 리셋합니다.
// Reset to builtinawait updater.reset({ toLastSuccessful: false });
// Reset to last successful bundleawait updater.reset({ toLastSuccessful: true });매개 변수:
| 옵션 | 타입 | 필수 | 설명 |
|---|---|---|---|
toLastSuccessful | boolean | 아니요 | true일 경우, 빌드 성공 시점의 번들로 리셋합니다. |
번들 정보
번들 정보현재()
현재()현재 번들과 네이티브 버전에 대한 정보를 가져옵니다.
const info = await updater.current();// { bundle: { id, version, status }, native: '1.0.0' }list(options)
다운로드한 모든 번들을 목록화합니다.클립보드에 복사
const bundles = await updater.list();// [{ id, version, status, downloaded, checksum }, ...]다음으로 구성된 번들을 가져오기()
getNextBundle()라는 제목앱이 재시작할 때 다음으로 구성된 번들을 가져옵니다.
const next = await updater.getNextBundle();// { id, version, status } or nullgetFailedUpdate()
getFailedUpdate()라는 제목앱이 마지막으로 실패한 업데이트에 대한 정보를 가져옵니다. (롤백을 디버깅하는 데 유용합니다.)
const failed = await updater.getFailedUpdate();// { id, version, reason } or nullgetBuiltinVersion()
getBuiltinVersion()라는 제목앱 바이너리와 함께 배포된 버전을 가져옵니다.
const version = await updater.getBuiltinVersion();// '1.0.0'업데이트 확인
업데이트 확인 섹션getLatest(options)
getLatest(options) 섹션최신 버전이 제공되는지 서버를 확인합니다.
const latest = await updater.getLatest();
if (latest.url && !latest.error) { // Update available console.log('New version:', latest.version); console.log('Download URL:', latest.url);} else if (latest.error) { console.error('Error checking updates:', latest.error);}반환:
| 속성 | 타입 | 설명 |
|---|---|---|
url | 문자열 | 다운로드 URL (업데이트가 없으면 빈 문자열) |
version | 문자 | __CAPGO_KEEP_0__ |
checksum | __CAPGO_KEEP_0__ | __CAPGO_KEEP_0__ |
sessionKey | __CAPGO_KEEP_0__ | __CAPGO_KEEP_0__ |
error | __CAPGO_KEEP_0__ | __CAPGO_KEEP_0__ |
message | __CAPGO_KEEP_0__ | 채널 관리 |
채널 관리 섹션
채널 관리__CAPGO_KEEP_0__
__CAPGO_KEEP_1____CAPGO_KEEP_2__
await updater.setChannel({ channel: 'beta' });__CAPGO_KEEP_4__
__CAPGO_KEEP_5____CAPGO_KEEP_6__
await updater.unsetChannel();__CAPGO_KEEP_8__
__CAPGO_KEEP_9____CAPGO_KEEP_10__
const channel = await updater.getChannel();// { channel: 'production', status: 'set' }listChannels()
Section titled “listChannels()”이 앱에 사용 가능한 모든 채널을 표시합니다.
const channels = await updater.listChannels();// ['production', 'beta', 'staging']Delay Conditions
Section titled “Delay Conditions”다운로드된 업데이트가 적용되는 시기를 제어합니다.
setMultiDelay(options)
Section titled “setMultiDelay(options)”업데이트가 적용되기 전에 충족해야 하는 조건을 설정합니다.
// Wait for app to be backgroundedawait updater.setMultiDelay({ delayConditions: [{ kind: 'background' }]});
// Wait until specific dateawait updater.setMultiDelay({ delayConditions: [{ kind: 'date', value: '2024-12-25T00:00:00Z' }]});
// Wait for app to be killed and restartedawait updater.setMultiDelay({ delayConditions: [{ kind: 'kill' }]});
// Multiple conditions (all must be met)await updater.setMultiDelay({ delayConditions: [ { kind: 'background' }, { kind: 'date', value: '2024-12-25T00:00:00Z' } ]});Delay Condition Types:
| 종류 | 값 | 설명 |
|---|---|---|
background | 선택적 지속 시간 (ms) | 앱이 백그라운드에 있을 때 기다립니다. |
kill | - | 앱이 죽고 다시 시작될 때까지 기다립니다. |
date | ISO 날짜 문자열 | 특정 날짜/시간까지 기다립니다. |
nativeVersion | 버전 문자열 | 네이티브 앱 업데이트를 기다립니다. |
cancelDelay()
cancelDelay() 섹션모든 지연 조건을 취소하고 다음 체크 시 즉시 업데이트를 적용합니다.
await updater.cancelDelay();기기 식별
기기 식별getDeviceId()
getDeviceId()기기 고유 식별자를 가져옵니다.
const deviceId = await updater.getDeviceId();// 'uuid-xxxx-xxxx-xxxx'setCustomId(options)
기기 식별자 (분석을 위한 유용한 옵션)를 설정합니다.클립보드에 복사
await updater.setCustomId({ customId: 'user-123' });설정
설정 섹션__CAPGO_KEEP_0__
섹션 titled “__CAPGO_KEEP_0__”__CAPGO_KEEP_1__을 런타임에 변경할 수 있습니다.
await updater.setUpdateUrl({ url: 'https://my-server.com/updates' });__CAPGO_KEEP_4__
섹션 titled “__CAPGO_KEEP_4__”statistic reporting URL을 변경하세요.
await updater.setStatsUrl({ url: 'https://my-server.com/stats' });__CAPGO_KEEP_1__(options)
__CAPGO_KEEP_2__ titled “__CAPGO_KEEP_3__(options)”__CAPGO_KEEP_4__ URL을 변경하세요.
await updater.setChannelUrl({ url: 'https://my-server.com/channel' });__CAPGO_KEEP_5__(options)
__CAPGO_KEEP_2__ titled “__CAPGO_KEEP_6__(options)”__CAPGO_KEEP_7__을 런타임에서 변경하세요.
await updater.setAppId({ appId: 'com.example.newapp' });getAppId() 함수
getAppId() 함수현재 App ID를 가져옵니다.
const appId = await updater.getAppId();디버그
디버그setDebugMenu(options) 함수
setDebugMenu(options) 함수디버그 메뉴를 활성화하거나 비활성화합니다.
await updater.setDebugMenu({ enabled: true });debug 메뉴가 활성화되어 있는지 확인합니다.
debug 메뉴 활성화 여부 확인debug 메뉴가 활성화되어 있는지 확인합니다.
const enabled = await updater.isDebugMenuEnabled();업데이트 이벤트를 듣기 위해
업데이트 이벤트__CAPGO_KEEP_0__ addListener:
updater.addListener('eventName', (event) => { // Handle event});이벤트
이벤트 데이터| 이벤트 데이터 | 이벤트 | 설명 |
|---|---|---|
download | { percent, status } | 다운로드 진행 상황 업데이트 |
updateAvailable | { bundle } | 새로운 업데이트가 있습니다 |
noNeedUpdate | { message } | 업데이트가 이미 최신 상태입니다 |
downloadComplete | { bundle } | 다운로드가 성공적으로 완료되었습니다 |
downloadFailed | { bundle, error } | 다운로드 실패 |
breakingAvailable | { bundle } | 업데이트가 불일치 (네이티브 업데이트가 필요합니다) |
updateFailed | { bundle, reason } | 업데이트 설치가 실패했습니다 |
appReloaded | {} | 앱이 다시 로드되었습니다 |
appReady | {} | notifyAppReady() __CAPGO_KEEP_0__ |
예시: 전체 이벤트 처리
__CAPGO_KEEP_1__// Progress trackingupdater.addListener('download', (event) => { updateProgressBar(event.percent);});
// Update available notificationupdater.addListener('updateAvailable', (event) => { showNotification(`Update ${event.bundle.version} available!`);});
// Handle completionupdater.addListener('downloadComplete', async (event) => { // Queue for next restart await updater.next({ id: event.bundle.id }); showNotification('Update will apply on next restart');});
// Handle failuresupdater.addListener('updateFailed', (event) => { console.error('Update failed:', event.reason); reportError(event);});생성자 옵션
생성자 옵션 섹션전체 구성 옵션 ElectronUpdater:
const updater = new ElectronUpdater({ // Required appId: 'com.example.app',
// Version override version: '1.0.0', // Override builtin version detection
// Server URLs updateUrl: 'https://plugin.capgo.app/updates', channelUrl: 'https://plugin.capgo.app/channel_self', statsUrl: 'https://plugin.capgo.app/stats',
// Behavior autoUpdate: true, // Enable automatic update checks appReadyTimeout: 10000, // Milliseconds before rollback (default: 10000) autoDeleteFailed: true, // Auto-delete failed bundles autoDeletePrevious: true, // Auto-delete old bundles resetWhenUpdate: true, // Reset to builtin on native update
// Channels defaultChannel: 'production',
// Direct Update Mode directUpdate: false, // 'atInstall' | 'onLaunch' | 'always' | false
// Security publicKey: '...', // RSA public key for E2E encryption
// Dynamic Configuration allowModifyUrl: false, // Allow runtime URL changes allowModifyAppId: false, // Allow runtime App ID changes persistCustomId: false, // Persist custom ID across updates persistModifyUrl: false, // Persist URL changes
// Debug debugMenu: false, // Enable debug menu (Ctrl+Shift+D) disableJSLogging: false, // Disable console logs
// Periodic Updates periodCheckDelay: 0, // Seconds between auto-checks (0 = disabled, min 600)});