Async Code Splitting

When you require/import a JavaScript or CSS module, Webpack compiles that code into the final JavaScript or CSS file. Usually, that's exactly what you want. But what if you only need to use a piece of code under certain conditions? For example, what if you want to use video.js to play a video, but only once a user has clicked a link:

JavaScript または CSS モジュールを要求/インポートすると、Webpack はそのコードを最終的な JavaScript または CSS ファイルにコンパイルします。通常、それはまさにあなたが望むものです。しかし、特定の条件下でのみコードを使用する必要がある場合はどうでしょうか?たとえば、video.js を使用してビデオを再生したいが、ユーザーがリンクをクリックした 1 回だけである場合はどうなるでしょうか。
1
2
3
4
5
6
7
8
9
10
// assets/app.js

import $ from 'jquery';
// a fictional "large" module (e.g. it imports video.js internally)
import VideoPlayer from './components/VideoPlayer';

$('.js-open-video').on('click', function() {
    // use the larger VideoPlayer module
    const player = new VideoPlayer('some-element');
});

In this example, the VideoPlayer module and everything it imports will be packaged into the final, built JavaScript file, even though it may not be very common for someone to actually need it. A better solution is to use dynamic imports: load the code via AJAX when it's needed:

この例では、VideoPlayer モジュールとそれがインポートするすべてのものは、最終的にビルドされた JavaScript ファイルにパッケージ化されます。より良い解決策は、動的インポートを使用することです。必要なときに AJAX 経由でコードをロードします。
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
// assets/app.js

import $ from 'jquery';

$('.js-open-video').on('click', function() {
    // you could start a loading animation here

    // use import() as a function - it returns a Promise
    import('./components/VideoPlayer').then(({ default: VideoPlayer }) => {
        // you could stop a loading animation here

        // use the larger VideoPlayer module
        const player = new VideoPlayer('some-element');

    }).catch(error => 'An error occurred while loading the component');
});

By using import() like a function, the module will be downloaded async and the .then() callback will be executed when it's finished. The VideoPlayer argument to the callback will be the loaded module. In other words, it works like normal AJAX calls! Behind the scenes, Webpack will package the VideoPlayer module into a separate file (e.g. 0.js) so it can be downloaded. All the details are handled for you.

関数のように import() を使用すると、モジュールは非同期でダウンロードされ、終了時に .then() コールバックが実行されます。コールバックへの VideoPlayer 引数は、ロードされたモジュールになります。つまり、通常の AJAX 呼び出しのように機能します。バックグラウンドで、Webpack は VideoPlayer モジュールを別のファイル (0.js など) にパッケージ化し、ダウンロードできるようにします。すべての詳細はあなたのために処理されます。

The { default: VideoPlayer } part may look strange. When using the async import, your .then() callback is passed an object, where the actual module is on a .default key. There are reasons why this is done, but it does look quirky. The { default: VideoPlayer } code makes sure that the VideoPlayer module we want is read from this .default property.

{ default: VideoPlayer } の部分がおかしいかもしれません。 asyncimport を使用すると、.then() コールバックにオブジェクトが渡され、実際のモジュールは .default キーにあります。これには理由がありますが、風変わりに見えます。 { default: VideoPlayer } コードは、必要な VideoPlayermodule がこの .default プロパティから読み取られるようにします。

For more details and configuration options, see dynamic imports on Webpack's documentation.

詳細と構成オプションについては、Webpack のドキュメントの動的インポートを参照してください。