• Jobs
  • About Us
  • professionals
    • Home
    • Jobs
    • Courses and challenges
    • Questions
    • Teachers
  • business
    • Home
    • Post vacancy
    • Our process
    • Pricing
    • Assessments
    • Payroll
    • Blog
    • Sales
    • Salary Calculator

0

390
Views
NestJs no puede crear una instancia del módulo (¿error de dependencias circulares?)

Tengo dos módulos que dependen uno del otro.

GameModule.ts

 import { Module, CacheModule, Global } from '@nestjs/common'; import { GameController } from './game.controller'; import { GameService } from './game.service'; import { PlayerModule } from '@src/player/player.module'; @Global() @Module({ imports: [ CacheModule.register(), PlayerModule, ], controllers: [GameController], providers: [GameService], exports: [CacheModule, GameService], }) export class GameModule {}

PlayerModule.ts

 import { Module, Global } from '@nestjs/common'; import { PlayerController } from './player.controller'; import { PlayerService } from './player.service'; import { GameModule } from '@src/game/game.module'; import { Web3ManagerModule } from '@src/web3-manager/web3-manager.module'; @Global() @Module({ imports: [GameModule, Web3ManagerModule], controllers: [PlayerController], providers: [PlayerService], exports: [PlayerService], }) export class PlayerModule {}

Definí en sus servicios el otro con forwardRef

GameService.ts

 ... constructor( @Inject(CACHE_MANAGER) private cacheManager: Cache, @Inject(forwardRef(() => PlayerService)) private playerService: PlayerService, ) { ...

PlayerService.ts

 ... constructor( @Inject(forwardRef(() => GameService)) private gameService: GameService, private web3Manager: Web3ManagerService, ) { ...

pero sigo recibiendo el error:

 Nest cannot create the GameModule instance. The module at index [1] of the GameModule "imports" array is undefined. Potential causes: - A circular dependency between modules. Use forwardRef() to avoid it. Read more: https://docs.nestjs.com/fundamentals/circular-dependency - The module at index [1] is of type "undefined". Check your import statements and the type of the module.

¿Qué me estoy perdiendo?

almost 3 years ago · Santiago Trujillo
Answer question
Find remote jobs

Discover the new way to find a job!

Top jobs
Top job categories
Business
Post vacancy Pricing Our process Sales
Legal
Terms and conditions Privacy policy
© 2025 PeakU Inc. All Rights Reserved.

Andres GPT

Recommend me some offers
I have an error