Skip to content
Advertisement

Tag: circular-dependency

Avoiding circular dependencies

I have 2 classes like so. and I understand we should never do this, as this is circular dependency. The problem is, this is the reality. We’re using neo4j, and can get back Risk with Mitigations, or a Mitigation with Risks. How do I approach this case? Answer You can use interfaces instead of a class. Interfaces don’t have implementation

How do you fix this circular dependency issue in node

` I’m getting errors such as Type variable is undefined and getLastUnknownAlbumTrackNumber is not a function I installed madge to check circular dependencies but I dont know how to resolve them following is the output from madge The following are the related imports & exports jobs/index.js services/metadata.js models/index.js Answer What do you expect to happen? An attempt to resolve a

Avoiding circular dependencies with Node require()?

I’m having a problem where I have an Electron app, we’ll say contained in files index.html and app.js. app.js is included in index.html with a script tag. Within app.js, I use var ENGINE = require(“./myGameEngine/”); which then requires different classes, each in their own file. It looks something like this: Unfortunately, sometimes ClassA, needs to use new myEngine.ClassB(). For example,

Advertisement