如何从一个地方的不同文件导出commonjs上的所有变量

How export all variable on commonjs from deferent file in one place

我有包含文件的文件夹,每个文件都有如下导出模块

myFirst.js

 const myName=()=>({name:"helo"})
 const myAddress=()=>({address:"Bali"})

module.export={
  myName,
  myAddress
}

mySecond.js

const myBisnis=()=>({name:"mouse bisnis"})

module.export ={
  myBisnis
}

来自 myFirst.js 和 mySecond.js

的所有模块

myLast.js

module.export={
  myFirst,
  mySecond

}

当我打电话给 myLast.js 它将包含来自 myFirst.js 和 secode.js 的所有模块。

感谢您的回放

如果你想导出一个函数或者文件中不存在的东西,你应该先导入它。像这样:

//myLast.js

import firstModule from 'myFirst.js';
import secondModule from 'mySecond.js';

module.export = {
  firstModule,
  secondModule
};

或者您可以使用直接导出:

// myLast.js

export { myName, myAddress } from 'myFirst.js';
export { myBisnis } from 'mySecond.js';