7

Is there any package or solution to detect cyclic dependency imports in react native?

[Or]

Can I get a stack trace for cyclic imports when running the app?

Currently the cyclic dependent imports are returning undefined values, Without telling the exact issue.

Thank you!

Sanyasirao Mopada
  • 943
  • 12
  • 31

1 Answers1

10

one simple solution is using madge package to check the circular dependencies in any javascript project.

run the below command in project folder

madge --circular --extensions js app/

Manikanta C.S.E
  • 401
  • 6
  • 7