From 46482b4945484ff1839b27361237491bba32c2f0 Mon Sep 17 00:00:00 2001 From: gaojunkang Date: Mon, 20 Feb 2023 00:31:29 +0800 Subject: [PATCH] docs(readme): example code --- README.md | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/README.md b/README.md index 4a9d86d..9431a51 100644 --- a/README.md +++ b/README.md @@ -6,17 +6,17 @@ Mirai-js v3,一个运行在 Node.js、浏览器下的,简单的 QQ 机器人开发框架。 -使用一目了然的异步 api,以及强大的中间件机制来实现你的应用。 +使用一目了然的异步 api,优良的类型提示,以及强大的中间件机制来实现你的应用。 ```js bot.on('FriendMessage', async (ctx, next) => { - await next(); - console.log(ctx.text); + await next() + console.log(`receive message from ${ctx.sender.id}`) }) - .pipe(Middlewares.textProcessor()) + .pipe(Middlewares.textProcessor()) // parse the plain text to ctx.text .pipe(async (ctx, next) => { await bot.sendMessage({ - qq: data.sender.id, + qq: ctx.sender.id, message: ctx.text, }); });