babel-plugin-dynamic-import-webpack

1.1.0 • Public • Published

babel-plugin-dynamic-import-webpack

Babel plugin to transpile import() to require.ensure, for Webpack.

Note that Webpack 2 has gotten import() after this code was written.

NOTE: Babylon v6.12.0 is required to correctly parse dynamic imports.

Installation

$ npm install babel-plugin-dynamic-import-webpack --save-dev

Usage

Via .babelrc (Recommended)

.babelrc

{
  "plugins": ["dynamic-import-webpack"]
}

Via CLI

$ babel --plugins dynamic-import-webpack script.js

Via Node API

require("babel-core").transform("code", {
  plugins: ["dynamic-import-webpack"]
});

Dynamic imports and webpack

Although the specification for import() supports a dynamic importing of modules in the browser runtime, webpack's require.ensure() is not dynamic and requires a hardcoded string to work correctly. For more information see webpack's documentation on dynamic requires.

Dependencies (0)

    Dev Dependencies (12)

    Package Sidebar

    Install

    npm i babel-plugin-dynamic-import-webpack

    Weekly Downloads

    21,505

    Version

    1.1.0

    License

    MIT

    Unpacked Size

    6.87 kB

    Total Files

    9

    Last publish

    Collaborators

    • brieb
    • airbnbeng
    • lencioni
    • jordangens
    • ljharb
    • sharmilajesupaul