What does it mean by live bindings?
问题 I am following a tutorial and it says ES modules uses live bindings. It means a feature to support cyclical dependencies. But I don't clearly understand this concept. What does this mean? 回答1: Live bindings is a concept introduced in ES modules. It means that when the exporting module changes a value, the change will be visible from the importer side. This is not the case for CommonJS modules. Module exports are copied in CommonJS. Hence importing modules cannot see changes happened on the