Anas Nabil Posted on Aug 16, 2022 Importing and Exporting Modules in JavaScript #javascript #beginners #tutorial Name Export export const name = 'value' Enter fullscreen mode Exit fullscreen mode Name Import import { name } from '...' Enter fullscreen mode Exit fullscreen mode Default Export export default 'value' Enter fullscreen mode Exit fullscreen mode Default Import import anyName from '...' Enter fullscreen mode Exit fullscreen mode Rename Export export { name as newName } Enter fullscreen mode Exit fullscreen mode Name Import import { newName } from '...' Enter fullscreen mode Exit fullscreen mode List Export and Renaming export { name1, name2 as newName2 } Enter fullscreen mode Exit fullscreen mode List Import and Renaming import { name1 as newName1, newName2 } from '...' Enter fullscreen mode Exit fullscreen mode Top comments (1) Subscribe Personal Trusted User Create template Templates let you quickly answer FAQs or store snippets for re-use. Submit Preview Dismiss Collapse Expand Lou Cyx Lou Cyx Lou Cyx Follow Check my articles here: https://lou.cx/articles Location Chicago, Illinois Education Self-taught dropout Work Senior Lead Software Engineer at VMWare Joined Jul 25, 2018 • Aug 17 '22 Dropdown menu Copy link Hide Just a heads up that you can add highlighting to the code blocks if you'd like. Just change: ... to specify the language: More details in our editor guide! About the actual post, one scenario that I think is missing is when you re-export one thing from another file: export { something } from "somewhere"; // or export { something as somethingElse } from "somewhere"; Enter fullscreen mode Exit fullscreen mode Cheers! Code of Conduct • Report abuse Are you sure you want to hide this comment? It will become hidden in your post, but will still be visible via the comment's permalink. Hide child comments as well Confirm For further actions, you may consider blocking this person and/or reporting abuse
Top comments (1)
Just a heads up that you can add highlighting to the code blocks if you'd like. Just change:
... to specify the language:
More details in our editor guide!
About the actual post, one scenario that I think is missing is when you re-export one thing from another file:
Cheers!