APPLE 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
..
lib 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.babelrc 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.editorconfig 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.eslintignore 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.eslintrc 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
.travis.yml 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
CHANGELOG.md 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
LICENSE 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
README.md 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos
package.json 025c69e553 wesmiler 点什么广告 %!s(int64=3) %!d(string=hai) anos

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']
});