Skip to content

Electron Updater API

GitHub

이 페이지는 Electron Updater의 모든 사용 가능한 메소드, 이벤트 및 구성 옵션을 문서화합니다.

기본 메서드

기본 메서드

notifyAppReady()

notifyAppReady()

각 앱 런칭 시 호출해야 함. bundle 로드 성공을 확인하고 자동 롤백을 방지합니다.

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문자열다운로드할 패키지의 URL
version문자열번들 식별자
checksum문자열아니오SHA256 체크섬
sessionKey문자열아니오세션 키

반환: BundleInfo 객체 id, version, status

다음(options)

다음(options)

다음 앱 재시작 시 로드할 패키지를 큐에 추가합니다.

await updater.next({ id: 'bundle-id' });

매개 변수:

옵션타입필수설명
id문자열큐에 추가할 패키지 ID

즉시 번들을 전환하고 앱을 다시 로드하세요.

await updater.set({ id: 'bundle-id' });

매개 변수:

선택타입필수설명
id문자열활성화할 번들 ID

현재 버블을 가진 앱을 수동으로 다시 로드합니다.

await updater.reload();

delete(options)

delete(options) 섹션

스토리지에서 버블을 삭제합니다.

await updater.delete({ id: 'bundle-id' });

매개 변수:

옵션타입필수설명
id문자열삭제할 번들 ID

reset(options)

reset(options) 섹션

빌트인 버전 또는 마지막 성공 번들을 재설정합니다.

// Reset to builtin
await updater.reset({ toLastSuccessful: false });
// Reset to last successful bundle
await updater.reset({ toLastSuccessful: true });

매개 변수:

옵션타입필수설명
toLastSuccessfulbooleanNoIf true, reset to last successful bundle instead of builtin

Bundle Information

Bundle Information

current()

current()

현재 버전의 패키지 및 네이티브 버전에 대한 정보를 가져옵니다.

const info = await updater.current();
// { bundle: { id, version, status }, native: '1.0.0' }

list(options)

list(options)

다운로드 된 모든 패키지를 목록화합니다.

const bundles = await updater.list();
// [{ id, version, status, downloaded, checksum }, ...]

다음으로 업데이트할 패키지를 가져옵니다.

getNextBundle()

다음으로 업데이트할 패키지를 가져옵니다.

const next = await updater.getNextBundle();
// { id, version, status } or null

애플리케이션의 이전 업데이트에 대한 정보를 가져옵니다. (롤백을 디버깅하는 데 유용합니다.).

const failed = await updater.getFailedUpdate();
// { id, version, reason } or null

애플리케이션 바이너리와 함께 배포된 버전을 가져옵니다.

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__SHA256 체크섬
sessionKey__CAPGO_KEEP_0__암호화 세션 키
error__CAPGO_KEEP_0__체크 실패 시 오류 메시지
message__CAPGO_KEEP_0__서버 메시지

채널 관리

채널 관리

특정 채널에 장치 할당.

await updater.setChannel({ channel: 'beta' });

채널 할당 해제 및 기본값 사용.

await updater.unsetChannel();

현재 채널 할당 가져오기.

const channel = await updater.getChannel();
// { channel: 'production', status: 'set' }

채널 목록()

채널 목록() 섹션

이 앱의 모든 채널을 목록화합니다.

const channels = await updater.listChannels();
// ['production', 'beta', 'staging']

다운로드된 업데이트가 적용되는 시기를 제어합니다.

setMultiDelay(options)

채널 목록() 섹션

업데이트가 적용되기 전에 충족해야 하는 조건을 설정합니다.

// Wait for app to be backgrounded
await updater.setMultiDelay({
delayConditions: [{ kind: 'background' }]
});
// Wait until specific date
await updater.setMultiDelay({
delayConditions: [{ kind: 'date', value: '2024-12-25T00:00:00Z' }]
});
// Wait for app to be killed and restarted
await 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' }
]
});

지연 조건 유형:

종류설명
background선택적 지속 시간 (ms)앱이 백그라운드에 있도록 기다립니다
kill-앱이 종료되고 다시 시작될 때까지 기다립니다
dateISO 날짜 문자열특정 날짜/시간까지 기다립니다
nativeVersion버전 문자열원시 앱 업데이트를 기다립니다

즉시 업데이트 적용

await updater.cancelDelay();

장치 식별

장치 식별

getDeviceId()

getDeviceId()

유니크한 장치 식별자 가져오기

const deviceId = await updater.getDeviceId();
// 'uuid-xxxx-xxxx-xxxx'

setCustomId(options)

setCustomId(options)

사용자 지정 식별자 설정 (분석을 위한 유용한 기능)

await updater.setCustomId({ customId: 'user-123' });

setUpdateUrl(options)

setUpdateUrl(options) 섹션

런타임에 업데이트서버 URL을 변경합니다.

await updater.setUpdateUrl({ url: 'https://my-server.com/updates' });

setStatsUrl(options)

setStatsUrl(options) 섹션

statistic reporting URL을 변경하세요.

await updater.setStatsUrl({ url: 'https://my-server.com/stats' });

setChannelUrl(options)

setChannelUrl(options) 섹션

채널 관리 URL을 변경하세요.

await updater.setChannelUrl({ url: 'https://my-server.com/channel' });

setAppId(options)

setAppId(options) 섹션

실행 중에 App ID를 변경하세요.

await updater.setAppId({ appId: 'com.example.newapp' });

getAppId() 함수

getAppId() 함수

현재 App ID를 가져옵니다.

const appId = await updater.getAppId();

Debug

Debug

setDebugMenu(options) 함수

setDebugMenu(options) 함수

디버그 메뉴를 활성화하거나 비활성화합니다.

await updater.setDebugMenu({ enabled: true });

debug 메뉴가 활성화되어 있는지 확인합니다.

debug 메뉴가 활성화되어 있는지 확인합니다.

debug 메뉴가 활성화되어 있는지 확인합니다.

const enabled = await updater.isDebugMenuEnabled();

이벤트

이벤트

업데이트 이벤트를 사용하여 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() was called

예시: 전체 이벤트 처리

예시: 전체 이벤트 처리
// Progress tracking
updater.addListener('download', (event) => {
updateProgressBar(event.percent);
});
// Update available notification
updater.addListener('updateAvailable', (event) => {
showNotification(`Update ${event.bundle.version} available!`);
});
// Handle completion
updater.addListener('downloadComplete', async (event) => {
// Queue for next restart
await updater.next({ id: event.bundle.id });
showNotification('Update will apply on next restart');
});
// Handle failures
updater.addListener('updateFailed', (event) => {
console.error('Update failed:', event.reason);
reportError(event);
});

생성자 옵션

생성자 옵션 섹션

__CAPGO_KEEP_0__의 전체 구성 옵션 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)
});

API에서 Electron Updater를 계속하는 방법

Electron Updater API Reference 섹션

__CAPGO_KEEP_0__을 사용하여 Electron Updater API Reference API을 사용하여 대시보드와 API 연산을 계획하고 싶다면 capgo을 사용하여 Using @capgo/electron-updater를 사용하여 native capability를 사용하는 경우 API 개요 API 구현 세부 정보를 위한 소개 __CAPGO_KEEP_0__ 구현 세부 정보를 위한 API 키 API 구현 세부 정보를 위한 및 장치 __CAPGO_KEEP_0__ 구현 세부 정보를 위한