From 9c32a7c63c96d2e2b82dd67ab286527a67fa7313 Mon Sep 17 00:00:00 2001 From: Shigma Date: Sun, 13 Oct 2024 22:47:30 +0800 Subject: [PATCH] update --- zh-CN/api/core/context.md | 1 - zh-CN/api/resources/channel.md | 4 ++-- zh-CN/api/service/registry.md | 6 ------ zh-CN/guide/develop/workspace.md | 2 +- zh-CN/manual/starter/direct.md | 3 --- zh-CN/plugins/index.md | 2 ++ 6 files changed, 5 insertions(+), 13 deletions(-) diff --git a/zh-CN/api/core/context.md b/zh-CN/api/core/context.md index a442697cf2c5..76d0f4dceeae 100644 --- a/zh-CN/api/core/context.md +++ b/zh-CN/api/core/context.md @@ -35,7 +35,6 @@ Koishi 使用了组合 (Compose) 的开发方式,绝大部分上下文属性 - [ctx.setInterval](../service/timer.md#ctx-setinterval) - [ctx.setTimeout](../service/timer.md#ctx-settimeout) - [ctx.sleep](../service/timer.md#ctx-sleep) -- [ctx.start](../service/registry.md#ctx-start) - [ctx.stop](../service/registry.md#ctx-stop) - [ctx.throttle](../service/timer.md#ctx-throttle) - [ctx.timer](../service/timer.md) diff --git a/zh-CN/api/resources/channel.md b/zh-CN/api/resources/channel.md index 1a53480e4e04..f71cd3ae1f81 100644 --- a/zh-CN/api/resources/channel.md +++ b/zh-CN/api/resources/channel.md @@ -20,8 +20,8 @@ export interface Channel { export enum ChannelType { TEXT = 0, DIRECT = 1, - VOICE = 2, - CATEGORY = 3, + CATEGORY = 2, + VOICE = 3, } ``` diff --git a/zh-CN/api/service/registry.md b/zh-CN/api/service/registry.md index e7a22c5a13d9..0bf4ca653ed6 100644 --- a/zh-CN/api/service/registry.md +++ b/zh-CN/api/service/registry.md @@ -28,12 +28,6 @@ 安装一个存在服务依赖的插件。参见 [服务的依赖关系](../../guide/plugin/service.md#服务的依赖关系)。 -### ctx.start() - -- 返回值: `Promise` - -启动此应用。 - ### ctx.stop() - 返回值: `Promise` diff --git a/zh-CN/guide/develop/workspace.md b/zh-CN/guide/develop/workspace.md index 489cdf483e4f..645e2cc7325c 100644 --- a/zh-CN/guide/develop/workspace.md +++ b/zh-CN/guide/develop/workspace.md @@ -186,6 +186,6 @@ yarn workspace @root/koishi build ``` ::: -通常来说,非插件仓库在克隆下来之后还需经过路径配置才可以正常使用。不过不同担心,模板项目支持已经内置了 Koishi 生态中的几个核心仓库 ([koishi](https://github.com/koishijs/koishi), [satori](https://github.com/satorijs/satori), [minato](https://github.com/shigma/minato)) 的路径配置。 +通常来说,非插件仓库在克隆下来之后还需经过路径配置才可以正常使用。不过不同担心,模板项目支持已经内置了 Koishi 生态中的几个核心仓库 ([koishi](https://github.com/koishijs/koishi), [satori](https://github.com/satorijs/satori), [minato](https://github.com/cordiverse/minato)) 的路径配置。 完成上述操作后,现在你的 `yarn dev` 已经能直接使用 Koishi 的 TypeScript 源码了! diff --git a/zh-CN/manual/starter/direct.md b/zh-CN/manual/starter/direct.md index 4eae8548b4b1..c7a2ea8ebe5e 100644 --- a/zh-CN/manual/starter/direct.md +++ b/zh-CN/manual/starter/direct.md @@ -79,9 +79,6 @@ ctx.plugin(server, { ctx.plugin(console) // 提供控制台 ctx.plugin(sandbox) // 提供调试沙盒 ctx.plugin(echo) // 提供回声指令 - -// 启动应用 -ctx.start() ``` 接着运行这个文件: diff --git a/zh-CN/plugins/index.md b/zh-CN/plugins/index.md index e3333bb7280d..1d9f068317ad 100644 --- a/zh-CN/plugins/index.md +++ b/zh-CN/plugins/index.md @@ -55,8 +55,10 @@ Koishi 官方提供了许多插件。为了更好地模块化开发,它们被 ## 开发工具 - [@koishijs/plugin-hmr](./develop/hmr.md):模块热替换 +- [@koishijs/plugin-http](./develop/http.md):网络请求 - [@koishijs/plugin-mock](./develop/mock.md):测试工具 - [@koishijs/plugin-notifier](./develop/notifier.md):通知服务 +- [@koishijs/plugin-proxy-agent](./develop/proxy-agent.md):网络代理 - [@koishijs/plugin-server](./develop/server.md):服务器 - [@koishijs/plugin-server-satori](./develop/server-satori.md):API 服务器 - [@koishijs/plugin-server-temp](./develop/server-temp.md):临时服务器