mirror of
https://github.com/jung-geun/NFD2NFC.git
synced 2026-08-07 01:04:04 +09:00
tray.ts: 트레이 아이콘, 팝오버 BrowserWindow 토글, 컨텍스트 메뉴. watcher.ts: chokidar 감시, dedup TTL 2s, auto/manual 모드, 글로벌 일시정지. store.ts: userData/store.json 영속화 (watchedDirs/settings/undoLog). ipc.ts: 18개 IPC 채널 핸들러. notifier.ts: interval 기반 알림 배치 처리 (알림 폭주 방지). settings-window.ts: 설정창 BrowserWindow 라이프사이클. Co-Authored-By: Claude Opus 4.7 <noreply@anthropic.com>
6 lines
124 B
TypeScript
6 lines
124 B
TypeScript
import { randomBytes } from 'crypto';
|
|
|
|
export function nanoid(): string {
|
|
return randomBytes(12).toString('base64url');
|
|
}
|