admin管理员组文章数量:1134599
Is there a syntax using ES6 or ES7 or babel which will allow me to easily bundle together many groups of sub files?
E.g., given:
./action_creators/index.js
./action_creators/foo_actions.js
./action_creators/bar_actions.js
Have index.js import foo and bar actions, then re-export them, so I can
import {FooAction, BarAction} from './action_creators/index.js'
I don't want to have to remember / change references if I were to change which file I've organized the objects themselves into.
Is there a syntax using ES6 or ES7 or babel which will allow me to easily bundle together many groups of sub files?
E.g., given:
./action_creators/index.js
./action_creators/foo_actions.js
./action_creators/bar_actions.js
Have index.js import foo and bar actions, then re-export them, so I can
import {FooAction, BarAction} from './action_creators/index.js'
I don't want to have to remember / change references if I were to change which file I've organized the objects themselves into.
Share Improve this question edited Jun 28, 2016 at 14:56 Felix Kling 816k180 gold badges1.1k silver badges1.2k bronze badges asked Jun 28, 2016 at 13:09 Jordan Warbelow-FeldsteinJordan Warbelow-Feldstein 10.7k13 gold badges50 silver badges79 bronze badges 03 Answers
Reset to default 167Yes, ES6 supports directly exporting imported modules:
export { name1, name2, …, nameN } from …;
export {FooAction, BarAction} from './action_creators/index.js'
You can also re-export all exports of the imported module using the *
syntax:
export * from …;
export * from './action_creators/index.js';
More info on MDN.
Default export as Default:
export {default} from './something';
Default export as Named:
export {default as foo} from './something';
Named export as Default:
export {foo as default} from './something';
Named export as Named:
export {foo} from './something';
Named export as Renamed:
export {foo as bar} from './something';
All export as is:
export * from './something';
export * from './something';
export {default} from './something';
can export default and others
本文标签: javascriptES6 export * from importStack Overflow
版权声明:本文标题:javascript - ES6 `export * from import`? - Stack Overflow 内容由网友自发贡献,该文观点仅代表作者本人, 转载请联系作者并注明出处:http://www.betaflare.com/web/1736860974a1955914.html, 本站仅提供信息存储空间服务,不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权/违法违规的内容,一经查实,本站将立刻删除。
发表评论