Movatterモバイル変換


[0]ホーム

URL:


Menu
×
See More 
Sign In
+1 Get Certified Upgrade For Teachers Spaces Get Certified Upgrade For Teachers Spaces
   ❮     
     ❯   

Basic JavaScript

JS TutorialJS SyntaxJS VariablesJS OperatorsJS If ConditionsJS LoopsJS StringsJS NumbersJS FunctionsJS ObjectsJS DatesJS ArraysJS Typed ArraysJS SetsJS MapsJS MathJS RegExpJS Data TypesJS ErrorsJS EventsJS ProgrammingJS ReferencesJS Versions

JS Advanced

JS FunctionsJS ObjectsJS ClassesJS IterationsJS AsynchronousJS ModulesJS Meta & ProxyJS HTML DOMJS WindowsJS Web APIJS AJAXJS JSONJS jQueryJS GraphicsJS ExamplesJS Reference


JavaScript Dynamic Modules

JavaScript Dynamic Import

Dynamic Import uses the syntax:

import(module);

Dynamic Import was introduced inECMAScript 2020

Dynamic Import is a way toload JavaScript modules at runtime,rather than at the start of your program.

Modern Software

Modern software splits imports into separate chunks.

Modules are downloaded only when requested - this method has many names:.

  • Dynamic Import
  • Code Splitting
  • Lazy Loading
  • Conditional Loading

Dynamic import is one of the most powerful features for modular and efficient code.

UnlikeStatic Import (which must appear at the top of a file),Dynamic Import can be used anywhere - inside functions, conditionals, event handlers, etc.

Syntax

import("./module.js")
  • The argument must be a string or expression thatresolves to a path
  • You must run the importinside a module script (<script type="module">)
TypeExampleWhen Loaded
Staticimport { add } from './math.js';At load time
Dynamicconst math = await import('./math.js');When needed

Improved Performance

Modules can improve performance by allowing tools to implement "code splitting".This means that a user's browser only needs to load the JavaScript modules required forthe specific features they are using at a given moment, rather than the entire application's code at once.

While modules themselves are a language feature, when combined with bundlers like Webpack or Rollup,they can lead to performance improvements through optimizations like tree-shaking (eliminating unused code),code splitting, and minification.


How Dynamic Import Works

Dynamic Modules use modernasync/await:

Example

async function run() {
  const module = await import("./math.js");
  let result = module.add(2, 3);
}
run();

Try it Yourself »

math.js

// Export an "add" function
export function add(a, b) {
  return a + b;
}

Example Explained

  • The script starts running
  • It defines and calls run()
  • Inside run(), it dynamically loads math.js
  • Once loaded, it gets access to the exported function add()
  • It calls add(2, 3) and gets 5
  • It displays the result
StepCodeExplained
1async function run()Define a function that can use await
2await import("./math.js")Load the module file only when needed
3module.add(2, 3)Use the exported function from the module
4run()Start the process

Step 1. Define a function that can use await:

async function run() {
  • This line defines anasynchronous function called run()
  • Theasync keyword means the function can useawait inside it
  • Theawait keyword pauses the function until aPromise is resolved
  • In this case, the Promise is theimport of the module

Step 2. Load the module file only when needed:

const module = await import("./math.js");
  • import("./math.js") defines adynamic import
  • The modulemath.js is loaded on demand
  • math.js returns aPromise that resolves to itsexported content
  • Theawait keyword waits until the module isfully loaded
  • Once loaded, the variablemodule contains thedata exported from math.js

Step 3. Use the exported function from the module:

let result = module.add(2, 3);
  • Calls the exported function add() from the imported module
  • Passes in 2 and 3 as arguments
  • The function adds them and returns 5
  • The result is stored in result

Step 4. Start the process - Call the Function:

run();

When it runs:

  1. It loads the module math.js dynamically
  2. It waits for the module to finish loading
  3. It calls the add() function of the module
  4. It displays the result


Another Example

Example

async function run(x) {
  const module = await import("./temperatures.js");
  let celsius = module.toCelsius(x);
  document.getElementById("demo").textContent = celsius + " Celcius";
}
run(50);

Try it Yourself »

temperatures.js

// Convert Fahrenheit to Celsius
export function toCelsius(farenheit) {
  return (farenheit - 32) * 5 / 9;
}

// Convert Celsius to Fahrenheit
export function toFahrenheit(celsius) {
  return (celsius * 9 / 5) + 32;
}

Dynamic Import Key Features

  • Lazy Loading - Load code only when it is needed
  • Performance Optimization - Reduce initial load size for faster page load
  • Conditional Imports - Import different modules based on conditions.

Conditional Loading

if (user.isAdmin) {
  const adminTools = await import("./admin-tools.js");
  adminTools.init();
}


×

Contact Sales

If you want to use W3Schools services as an educational institution, team or enterprise, send us an e-mail:
sales@w3schools.com

Report Error

If you want to report an error, or if you want to make a suggestion, send us an e-mail:
help@w3schools.com

W3Schools is optimized for learning and training. Examples might be simplified to improve reading and learning.
Tutorials, references, and examples are constantly reviewed to avoid errors, but we cannot warrant full correctness
of all content. While using W3Schools, you agree to have read and accepted ourterms of use,cookies andprivacy policy.

Copyright 1999-2025 by Refsnes Data. All Rights Reserved.W3Schools is Powered by W3.CSS.


[8]ページ先頭

©2009-2025 Movatter.jp