Home >Web Front-end >JS Tutorial >Understanding JavaScript Modules and the Import/Export System
In JavaScript, modules allow you to break your code into smaller, reusable pieces, improving organization, maintainability, and readability. Modules are essential for creating scalable applications, especially when the codebase grows larger. With the introduction of ES6 (ECMAScript 2015), JavaScript gained a native module system that allows you to import and export code between different files.
A module is essentially a piece of code that is stored in its own file. This code can define variables, functions, classes, or any other construct that you want to make available for use in other parts of the application.
To make variables, functions, or classes from one file available in another file, you use the export keyword. There are two ways to export from a module in JavaScript: named exports and default exports.
Named exports allow you to export multiple items (variables, functions, etc.) from a module. You export them by specifying their names.
// math.js (Module File) export const add = (a, b) => a + b; export const subtract = (a, b) => a - b;
A default export allows you to export a single value, which could be a function, class, or object. The default export is typically used when you want to export one main feature of the module.
// math.js (Module File) export default function multiply(a, b) { return a * b; }
To access the exported values from a module in another file, you use the import keyword. There are two types of imports: named imports and default imports.
When importing named exports, you must use the exact name that was used in the export statement.
// app.js (Main File) import { add, subtract } from './math.js'; console.log(add(2, 3)); // Output: 5 console.log(subtract(5, 3)); // Output: 2
When importing a default export, you can choose any name for the imported value.
// app.js (Main File) import multiply from './math.js'; console.log(multiply(2, 3)); // Output: 6
You can also combine named imports with a default import from the same module.
// math.js export const add = (a, b) => a + b; export default function multiply(a, b) { return a * b; } // app.js import multiply, { add } from './math.js'; console.log(multiply(2, 3)); // Output: 6 console.log(add(2, 3)); // Output: 5
You can export and import classes in the same way as functions and variables.
// math.js (Module File) export const add = (a, b) => a + b; export const subtract = (a, b) => a - b;
JavaScript also supports dynamic imports, which allow you to load modules conditionally at runtime. This can be useful for code splitting, where you load modules only when needed, reducing initial loading time.
// math.js (Module File) export default function multiply(a, b) { return a * b; }
In modern browsers, you can use ES6 modules natively. You just need to add the type="module" attribute to your