From b7132cba9f8439a7a321cba93cfe46d8a54ff4d2 Mon Sep 17 00:00:00 2001 From: Abhijit Hota Date: Wed, 3 Mar 2021 09:49:40 +0530 Subject: [PATCH] Update dynamic-import-expressions.md --- docs/project/dynamic-import-expressions.md | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docs/project/dynamic-import-expressions.md b/docs/project/dynamic-import-expressions.md index 83ee6b0a4..716cbd35b 100644 --- a/docs/project/dynamic-import-expressions.md +++ b/docs/project/dynamic-import-expressions.md @@ -1,7 +1,7 @@ ## Dynamic import expressions **Dynamic import expressions** are a new feature and part of **ECMAScript** that allows users to asynchronously request a module at any arbitrary point in your program. -**TC39** JavaScript committee has it’s own proposal which is in stage 3, and it’s called [import() proposal for JavaScript](https://github.com/tc39/proposal-dynamic-import). +**TC39** JavaScript committee has it’s own proposal which is in stage 4, and it’s called [import() proposal for JavaScript](https://github.com/tc39/proposal-dynamic-import). Alternatively, **webpack** bundler has a feature called [**Code Splitting**](https://webpack.js.org/guides/code-splitting/) which allows you to split your bundle into chunks which can be downloaded asynchronously at a later time. For instance, this allows to serve a minimal bootstrap bundle first and to asynchronously load additional features later.