昨天,我的代码第一次被其他人审查。作为我正在参加的开源开发课程的作业之一,我们必须审查彼此的代码。在这个练习中,我与 Vinh 搭档,他是我的一个朋友,碰巧也是一位非常优秀的程序员。我们的任务是测试和归档彼此在课程中一直在使用的命令行工具工作的问题。
我们通过文本同步和通过 GitHub 问题异步进行代码审查。我发现同步方法可以更快地得到结果,因为我可以咨询代码作者,了解他们在编写代码时为什么采用某种方法,并立即得到答复。然而,异步方法消除了在两个人的日程安排中找到固定时间来完成工作的需要。
Vinh 创建了一个名为“barrierless”的命令行工具,它使用人工智能将文本短语翻译成其他语言,我认为这是一个很酷的主意。当我开始测试 Vinh 的程序时,它还处于早期开发阶段,所以还没有 README(现在有了,去看看吧!)。
Barrierless 是一款命令行工具,旨在通过提供从一种语言到另一种语言的无缝翻译来打破语言障碍。该工具由 GROQCloud 提供支持,允许用户快速将文本翻译成所需的目标语言,使不同语言之间的沟通变得轻松。
git clone git@github.com:vinhyan/barrierless.git
cd barrierless
npm install
创建一个 .env 文件来存储 Groq API 密钥
注意:有关如何获取和存储 Groq API Key 的说明,请参阅 .env.example
如果在步骤 3 中使用了 npm install -g 则省略此步骤...
A feature I really liked is the colorful output text which makes the user experience a little bit more pleasant - something I neglected in my own program in trying to model it after CLI tools like git.
I read the package.json file to find out how the program should be run, and when it immediately crashed I realized I forgot to add the API key as an environment variable. After adding my API key, the program ran without errors, although I did find an interesting quirk - the program defaults the output language to English, so if you didn't specify one, and the input was in English, it seemed to choose a language to translate to on its own - either randomly, or based on context from the input.
I opened a few other issues, mostly to do with improving code quality:
index.js contains the following async function calls which are not wrapped in a try/catch block and may lead to an uncaught exception:
export async function main(text, targetLang) {
const chatCompletion = await getGroqChatCompletion(text, targetLang);
console.log(chatCompletion.choices[0]?.message?.content || '');
}
...
program
...
.action(async (text, options) => {
console.log(chalk.blue(`Translating <span class="pl-s1"><span class="pl-kos">${text}</span>...`</span>));
await main(text, options.language);
});
Some changes may be made to to the project make it easier to understand and work on:
该项目同时使用了 ES6 import 和 CommonJS require,因为 chalk 模块需要使用 import,并且对 package.json 使用 import 会导致错误。添加评论来解释这一点会很有帮助。
接下来轮到我接受审核了。我不确定会出现什么样的问题,但 Vinh 最终发现了一堆我没有注意到的问题:
README.md 文件缺少运行 npm 链接的指令,这是 CLI 工具本地开发和测试所必需的
index.js 第 31 行:变量名称中的拼写错误:reponseStream
我认为我做得很好,但事实证明,总会有一个可能被遗漏的错误或一个可以改进的功能。有一双新的眼睛来审视我编写的代码真是太棒了。目前,我修复了拼写错误并更新了自述文件,但其他问题需要测试,我计划在发布 0.1 版本之前解决这些问题。
以上是第一次代码审查的详细内容。更多信息请关注PHP中文网其他相关文章!