Huge News!Announcing our $40M Series B led by Abstract Ventures.Learn More
Socket
Sign inDemoInstall
Socket

babel-plugin-transform-import-sync

Package Overview
Dependencies
Maintainers
1
Versions
4
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

babel-plugin-transform-import-sync

A babel plugin to transform async import to sync.

  • 2.0.0
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
6
Maintainers
1
Weekly downloads
 
Created
Source

babel-plugin-transform-import-sync

CircleCI Status NPM Version License

A babel plugin to transform async import to sync.

Installation

NPM

$ npm install babel-plugin-transform-import-sync --save-dev

Usage

In .babelrc.

{
    "presets": [
        "env",
        "stage-0",
        "react"
    ],
    "env": {
        "development": {
            "presets": [
                "react-hmre"
            ],
            "plugins": [
                "syntax-dynamic-import",
                "transform-import-sync"
            ]
        }
    },
    "plugins": [
        "transform-runtime",
        "transform-decorators-legacy"
    ]
}

Example

Async component import like this:

import asyncComponent from 'components/AsyncComponent';

export default [{
    path: '/',
    component: asyncComponent(() => import('containers/Root'))
}];

will be transformed to sync:

import asyncComponent from 'components/AsyncComponent';

export default [{
    path: '/',
    component: asyncComponent(() => (function() {
        const component = require('containers/Root');
        return component.default || component;
    })())
}];

Keywords

FAQs

Package last updated on 31 Aug 2018

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc