GithubHelp home page GithubHelp logo

ptzagk / babel-plugin-smart-webpack-import Goto Github PK

View Code? Open in Web Editor NEW

This project forked from sebastian-software/babel-plugin-smart-webpack-import

0.0 0.0 0.0 307 KB

Making webpack imports smarter by injecting additional features dynamically. Goal: Make import() more user-friendly.

License: Apache License 2.0

JavaScript 100.00%

babel-plugin-smart-webpack-import's Introduction

Smart Webpack Import
Sponsored by Version Downloads Build Status Unix Build Status Windows Dependencies

Smart Webpack Import has the goal to improve the developer experience when working with so-called dynamic import() statements.

Features

  • Automatic chunk names for all imports.
  • Respects existing chunk names and keeps them.
  • Keeps other magic comments from Webpack in-tact while adding our ones.
  • Uses hashes on requester to prevent collisions for identically named imports.
  • Works together with Loadable Components and (other code-splitting SSR solutions).

Installation

npm i -D babel-plugin-smart-webpack-import

Usage

"plugins": [
  "babel-plugin-smart-webpack-import"
]

Use it together with your favorite code splitting library:

"plugins": [
  "babel-plugin-smart-webpack-import",
  "@loadable/babel-plugin"
]

Example

Basic

import('./HelloView')

           

import(
/*webpackChunkName:'HelloView-zy9ks'*/
'./HelloView');

Keeps Prefetch

import(/* webpackPrefetch: true */ './HelloView')

           

import(
/*webpackPrefetch:true,webpackChunkName:'HelloView-zy9ks'*/
'./HelloView');

Shortens Paths

import('./views/admin/SettingsView')

           

import(
/*webpackChunkName:'SettingsView-ijYnC'*/
'./views/admin/SettingsView');

Supports query-based imports

import(`./views/${name}`)

           

import(
/*webpackChunkName:'views-[request]-njvjH'*/
`./views/${name}`);

Shortens query-based imports

import(`./app/views/${name}`)

           

import(
/*webpackChunkName:'views-[request]-xkLem'*/
`./views/${name}`);

Comments

To make this work it's important that your Babel setup keeps comments in-tact as the information required is carryied over to Webpack via so-called magic comments.

This module exports an additional helper function called shouldPrintComment to make this work more easily. It keeps Webpack's Magic Comments and "Pure" markers for Uglify compression. You can pass it over to your Babel config like this:

import { shouldPrintComment } from "babel-plugin-smart-webpack-imports"

export default {
  presets: [...],
  plugins: [...],
  shouldPrintComment
}

Please not that this only works in a JS environment e.g. an exported Rollup or Webpack config. A plain .babelrc is not capable of declaring functions or even importing code. With Babel v7 your can use a .babelrc.js file as well.

License

Apache License Version 2.0, January 2004

Copyright

Logo of Sebastian Software GmbH, Mainz, Germany

Copyright 2018
Sebastian Software GmbH

babel-plugin-smart-webpack-import's People

Contributors

swernerx avatar

Recommend Projects

  • React photo React

    A declarative, efficient, and flexible JavaScript library for building user interfaces.

  • Vue.js photo Vue.js

    🖖 Vue.js is a progressive, incrementally-adoptable JavaScript framework for building UI on the web.

  • Typescript photo Typescript

    TypeScript is a superset of JavaScript that compiles to clean JavaScript output.

  • TensorFlow photo TensorFlow

    An Open Source Machine Learning Framework for Everyone

  • Django photo Django

    The Web framework for perfectionists with deadlines.

  • D3 photo D3

    Bring data to life with SVG, Canvas and HTML. 📊📈🎉

Recommend Topics

  • javascript

    JavaScript (JS) is a lightweight interpreted programming language with first-class functions.

  • web

    Some thing interesting about web. New door for the world.

  • server

    A server is a program made to process requests and deliver data to clients.

  • Machine learning

    Machine learning is a way of modeling and interpreting data that allows a piece of software to respond intelligently.

  • Game

    Some thing interesting about game, make everyone happy.

Recommend Org

  • Facebook photo Facebook

    We are working to build community through open source technology. NB: members must have two-factor auth.

  • Microsoft photo Microsoft

    Open source projects and samples from Microsoft.

  • Google photo Google

    Google ❤️ Open Source for everyone.

  • D3 photo D3

    Data-Driven Documents codes.