什么是 REPL?
在开发 Nest.js 应用时,通常需要在浏览器中访问特定 URL 并通过 GET 或 POST 方式传参来测试模块、服务和控制器,这种方法虽然有效,但有时候可能会显得繁琐。
Nest.js 提供了 REPL 模式,类似于 Node.js 的 REPL,允许开发者在控制台中直接测试代码。
创建 Nest 项目:
bash
nest new repl-test -p npm
创建 test 模块:
运行项目:
typescript
npm run start:dev
运行 repl 模式
在 src 下创建 repl.ts,内容如下:
重新通过这种方式运行项目:
bash
npm run start:dev -- --entryFile repl
其中 --entryFile 用于指定入口文件为 repl.ts
。
REPL 模式下的操作
使用 debug()
查看所有模块以及模块下的控制器和提供者:
methods() 查看某个控制器或提供者的方法:
使用 get()
或 $()
获取提供者或控制器的实例并调用其方法:
注意事项:REPL 模式下,直接调用的方法不会触发管道(pipe)、拦截器(interceptor)等,仅用于传参测试函数。
配置命令历史
为了保留命令历史,可以按住上下键进行历史导航,可以在 repl.ts
中添加历史设置代码:
typescript
import { repl } from '@nestjs/core';
import { AppModule } from './app.module';
async function bootstrap() {
const replServer = await repl(AppModule);
replServer.setupHistory('.nestjs_repl_history', (err) => {
if (err) {
console.error(err);
}
});
}
bootstrap();
最后我们可以把命令配置到 npm script:
bash
"repl:dev": "npm run start:dev -- --entryFile repl",