nest-console icon indicating copy to clipboard operation
nest-console copied to clipboard

Create beautiful CLI commands in your NestJS Applications

Results 3 nest-console issues
Sort by recently updated
recently updated
newest added

I've registered a command both ways (class and method), run the build, then called it on the cli but getting nothing back. Nest 8.0 App.module ``` imports: [ ConfigModule.forRoot(), ConsoleModule,...

``` @Command('video_job:callback {videoId}') async videoJobCallback(_cli: ConsoleIO) { const videoId = _cli.argument('videoId'); const videoJob = await this.videosService.findJobByVideoId(videoId); if (videoJob) { if (!videoJob.callback_url) { _cli.error('No callback_url'); return; } const video = videoJob.video;...

How use the await prompt doesn't work ????