开始使用
复制一个包含安装步骤和此插件的完整 Markdown 指南的配置提示。
Set up this Capacitor plugin in the project.
Use the package manager already used by the project.
Install these package(s): `@capgo/capacitor-live-reload`
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/live-reload/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.
安装
标题:安装您可以使用我们的AI辅助设置来安装插件。使用以下命令将Capgo技能添加到您的AI工具中:
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-live-reload` plugin in my project.如果您更喜欢手动设置,请运行以下命令并按照以下平台特定的说明进行安装:
bun add @capgo/capacitor-live-reloadbunx cap sync导入
标题:导入import { LiveReload } from '@capgo/capacitor-live-reload';API 简介
标题:API 简介configureServer
标题:配置服务器用于后续连接存储远程开发服务器设置。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.configureServer({} as ConfigureServerOptions);connect
标题:连接建立一个 WebSocket 连接,如果一个连接已经激活则不再建立。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.connect();disconnect
标题:断开连接关闭当前的 WebSocket 连接并禁用自动重连。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.disconnect();getStatus
Section titled “getStatus”获取当前连接状态。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.getStatus();reload
Section titled “reload”触发 Capacitor WebView 的全量重载。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.reload();reloadFile
Section titled “reloadFile”如果运行时支持则重载单个文件/模块(否则重载全量)。
import { LiveReload } from '@capgo/capacitor-live-reload';
await LiveReload.reloadFile({} as FileUpdatePayload);ConfigureServerOptions
Section titled “ConfigureServerOptions”export interface ConfigureServerOptions { /** * Base URL for the dev server (e.g. https://dev.local:5173). * When a connection is established the Capacitor WebView navigates to this URL. */ url: string; /** Optional WebSocket path override when different from /ws. */ websocketPath?: string; /** Extra headers sent when creating the WebSocket connection. */ headers?: Record<string, string>; /** Automatically reconnect when the socket closes unexpectedly. Default: true. */ autoReconnect?: boolean; /** Delay (ms) between reconnection attempts. Default: 2000. */ reconnectInterval?: number;}LiveReloadStatus
标题:LiveReloadStatusexport interface LiveReloadStatus { connected: boolean; url?: string;}FileUpdatePayload
标题:FileUpdatePayloadexport interface FileUpdatePayload { path: string; hash?: string;}LiveReloadEventCallback
标题:LiveReloadEventCallbackexport type LiveReloadEventCallback = (event: LiveReloadEventPayload) => void;LiveReloadStatusCallback
标题:LiveReloadStatusCallbackexport type LiveReloadStatusCallback = (status: LiveReloadStatus) => void;LiveReloadEventPayload
标题:LiveReloadEventPayloadexport interface LiveReloadEventPayload { type: LiveReloadMessageType; /** Populated when type === 'file-update'. */ file?: FileUpdatePayload; /** Optional human-readable message for errors or status changes. */ message?: string;}LiveReloadMessageType
标题:LiveReloadMessageTypeexport type LiveReloadMessageType = 'full-reload' | 'file-update' | 'error' | 'connected' | 'disconnected';真实数据来源
标题:真实数据来源该页面是从插件的 src/definitions.ts当公共 API 在上游发生变化时,请重新运行同步。
继续从 Getting Started
标题:继续从 Getting Started如果您正在使用 Getting Started 来规划仪表板和 API 操作,请将其连接到 使用 @capgo/capacitor-live-reload 为在使用 @capgo/capacitor-live-reload 中的原生功能 API 简介 为 API 简介 的实现细节 介绍 为介绍 的实现细节 API 密钥 为 API 密钥 的实现细节, 和 设备 为设备 的实现细节。