top button
Flag Notify
    Connect to us
      Site Registration

Site Registration

When dependent modules of a module are loaded?

0 votes
229 views
When dependent modules of a module are loaded?
posted Oct 5, 2017 by Latha

Share this question
Facebook Share Button Twitter Share Button LinkedIn Share Button

1 Answer

0 votes

A module might have dependencies on other modules. The dependent modules are loaded by angular
before the requiring module is loaded.
In other words the configuration blocks of the dependent modules execute before the configuration blocks of the
requiring module. The same is true for the run blocks. Each module can only be loaded once, even if multiple other
modules require it.

answer Oct 5, 2017 by Shivaranjini
...