Getting Started
이 플러그인의 설치 단계와 전체 마크다운 가이드를 포함한 설정 프롬프트를 복사하세요.
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-persistent-account`
Run the required Capacitor sync/update step after installation.
Read this markdown guide for the full setup steps: https://raw.githubusercontent.com/Cap-go/website/refs/heads/main/apps/docs/src/content/docs/docs/plugins/persistent-account/getting-started.mdx
Use that guide for platform-specific steps, native file edits, permissions, config changes, imports, and usage setup.
If that guide references other docs pages, read them too.
설치
설치 제목Capgo의 AI-Assisted Setup을 사용하여 플러그인을 설치할 수 있습니다. AI 도구에 다음 명령어를 사용하여 Capgo 스킬을 추가하세요:
npx skills add https://github.com/Cap-go/capgo-skills --skill capacitor-plugins다음 명령어를 사용하여 다음 프롬프트를 사용하세요:
Use the `capacitor-plugins` skill from `Cap-go/capgo-skills` to install the `@capgo/capacitor-persistent-account` plugin in my project.만약 Manual Setup을 선호한다면, 플러그인을 설치하기 위해 다음 명령어를 실행하고 아래의 플랫폼별 지침을 따르세요:
bun add @capgo/capacitor-persistent-accountbunx cap syncImport
Import 섹션import { CapacitorPersistentAccount } from '@capgo/capacitor-persistent-account';API 개요
API 개요 섹션readAccount
계정 읽기저장된 계정 데이터를 영구 저장소에서 읽습니다.
앱 세션을 넘어 가고 앱 재설치에도 살아남는 앱에서 이전에 저장된 계정 데이터를 읽습니다.
import { CapacitorPersistentAccount } from '@capgo/capacitor-persistent-account';
const result = await CapacitorPersistentAccount.readAccount();if (result.data) { console.log('Account data:', result.data);} else { console.log('No account data found');}saveAccount
계정 저장 섹션계정 데이터를 영구 저장소에 저장합니다.
플랫폼에 특정한 보안 저장 메커니즘을 사용하여 제공된 계정 데이터를 저장합니다. 앱 세션을 넘어survive 앱 재설치까지 데이터가 유지됩니다. 이미 존재하는 계정 데이터는 덮어씌워집니다.
import { CapacitorPersistentAccount } from '@capgo/capacitor-persistent-account';
await CapacitorPersistentAccount.saveAccount({ data: { userId: '12345', username: 'john.doe', email: 'john@example.com' }});진실의 근원
“진실의 근원”이라는 제목의 섹션이 페이지는 플러그인의 src/definitions.ts공공 API이 업스트림에서 변경될 때 다시 싱크를 실행하세요.
Getting Started에서 계속하기
“Getting Started에서 계속하기”라는 제목의 섹션이미 사용 중이라면 Getting Started 대시보드와 API 연산을 계획하기 위해 Using @capgo/capacitor-persistent-account capgo의 내장 기능을 위한 @capacitor/capgo-영구 계정 사용 API 개요 API 개요의 구현 세부 정보를 위한 소개 소개의 구현 세부 정보를 위한 API 키 API 키의 구현 세부 정보를 위한, 및 장치 장치의 구현 세부 정보를 위한