APPLE 025c69e553 wesmiler 点什么广告 3 yıl önce
..
lib 025c69e553 wesmiler 点什么广告 3 yıl önce
.babelrc 025c69e553 wesmiler 点什么广告 3 yıl önce
.editorconfig 025c69e553 wesmiler 点什么广告 3 yıl önce
.eslintignore 025c69e553 wesmiler 点什么广告 3 yıl önce
.eslintrc 025c69e553 wesmiler 点什么广告 3 yıl önce
.travis.yml 025c69e553 wesmiler 点什么广告 3 yıl önce
CHANGELOG.md 025c69e553 wesmiler 点什么广告 3 yıl önce
LICENSE 025c69e553 wesmiler 点什么广告 3 yıl önce
README.md 025c69e553 wesmiler 点什么广告 3 yıl önce
package.json 025c69e553 wesmiler 点什么广告 3 yıl önce

README.md

babel-plugin-dynamic-import-node

Babel plugin to transpile import() to a deferred require(), for node. Matches the proposed spec.

NOTE: Babylon >= v6.12.0 is required to correct parse dynamic imports.

Installation

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

Usage

Via .babelrc (Recommended)

.babelrc

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

Via CLI

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

Via Node API

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