Dynamic Import
Technology | My Explanation | Spec |
---|---|---|
React Lazy | Mark component "not important." React will load this after the initial load. | React 16 (2017) Standard |
React | A "slot" for lazy components to pop in. React will load this after the initial load. | React 16 (2017) Standard |
ECMAScript Dynamic Import | Loading an ECMAScript module asynchronously | ES9 (2018) Standard |
Next.js Dynamic Import | React Lazy + Suspense Wrapper | Next.js 7 (2018) Proprietary |