guys!
I decided to write own module loader. For example, I have 2 js files, and one of them try to load and execute other one.
I used XMLHttpRequest, where as action-argument I send the path to file, and when I get response I execute xhr.responseText by eval() method.
Is this solution correct? Or it is architectural incorrect?