Table of Contents
Module methods
ES6 (recommended)
Home Web Front-end Front-end Q&A Does webpack support es6?

Does webpack support es6?

Jan 18, 2023 pm 07:01 PM
es6 webpack

Webpack supports es6. Webpack 2 supports native ES6 module syntax, which means developers can use import and export without introducing additional tools like babel. But if you use other ES6 features, you still need to introduce the babel tool.

Does webpack support es6?

The operating environment of this tutorial: Windows 7 system, ECMAScript version 6, Dell G3 computer.

Module methods


When packaging your application with webpack, you can choose from various module syntax styles, including ES6, CommonJS and AMD.

Although webpack supports multiple module syntaxes, we still recommend using a consistent syntax as much as possible to avoid some strange behaviors and bugs. In fact, webpack enables syntax consistency checking when the nearest package.json file contains a "type" field with a value of "module" or "commonjs". Please pay attention to this before reading:

  • Set "type": "module" for .mjs or .js in package.json

    • CommonJS is not allowed, for example, you cannot use require, module.exports or exports

    • When importing a file, it is mandatory to write an extension, for example, you should use import '. /src/App.mjs' instead of import './src/App' (you can disable this rule by setting Rule.resolve.fullySpecified)

  • Set "type": "commonjs" in package.json for .cjs or .js

    • Both import and export are not available

  • Set "type": "module" for .wasm in package.json

    • When introducing a wasm file, you must write the file extension


webpack 2 supports native ES6 module syntax, which means you don’t need to introduce additional tools like babel , you can use import and export. But note that if you use other ES6 features, you still need to introduce babel. webpack supports the following methods:

import

## Use import to statically import another module exported through export.

import MyModule from './my-module.js';
import { NamedExport } from './other-module.js';
Copy after login

Warning:

The keyword here is static. In the standard import statement, the module statement cannot introduce other modules in a dynamic way that "has logic or contains variables". More information about import and dynamic usage of import().

You also introduce Data URI through import:

import 'data:text/javascript;charset=utf-8;base64,Y29uc29sZS5sb2coJ2lubGluZSAxJyk7';
import {
  number,
  fn,
} from 'data:text/javascript;charset=utf-8;base64,ZXhwb3J0IGNvbnN0IG51bWJlciA9IDQyOwpleHBvcnQgY29uc3QgZm4gPSAoKSA9PiAiSGVsbG8gd29ybGQiOw==';
Copy after login

export

Export the entire module or named by default Export module.

// 具名导出
export var Count = 5;
export function Multiply(a, b) {
  return a * b;
}

// 默认导出
export default {
  // Some data...
};
Copy after login

import()

function(string path):Promise

Dynamic loading module. The point where import is called is considered a split point, meaning that the requested module and all submodules it references will be split into a single chunk.

Tip:

The ES2015 Loader specification defines the import() method to dynamically load ES2015 modules at runtime.

if (module.hot) {
  import('lodash').then((_) => {
    // Do something with lodash (a.k.a '_')...
  });
}
Copy after login
Warning: The

import() feature relies on built-in Promise. If you want to use import() in older browsers, remember to use a polyfill library like es6-promise or promise-polyfill to pre-populate (shim) the Promise environment.

Expressions in import()

cannot use fully dynamic import statements, such as import(foo). is because foo could be any path to any file in your system or project.

import() must contain at least some path information about the module. Packaging can be limited to a specific directory or set of files, so that when using dynamic expressions - every module that may be requested in an import() call is included. For example, import(`./locale/${language}.json`) will package each .json file in the .locale directory into a new chunk. At runtime, after the variable language has been evaluated, any file like english.json or german.json can be used.

// 想象我们有一个从 cookies 或其他存储中获取语言的方法
const language = detectVisitorLanguage();
import(`./locale/${language}.json`).then((module) => {
  // do something with the translations
});
Copy after login

Tip:

Using the webpackInclude and webpackExclude options allows you to add regular expression patterns to reduce the number of files imported by webpack.

Magic Comments

Inline comments enable this feature. By adding comments in the import, we can do things like name the chunk or select a different mode.

// 单个目标
import(
  /* webpackChunkName: "my-chunk-name" */
  /* webpackMode: "lazy" */
  /* webpackExports: ["default", "named"] */
  'module'
);

// 多个可能的目标
import(
  /* webpackInclude: /\.json$/ */
  /* webpackExclude: /\.noimport\.json$/ */
  /* webpackChunkName: "my-chunk-name" */
  /* webpackMode: "lazy" */
  /* webpackPrefetch: true */
  /* webpackPreload: true */
  `./locale/${language}`
);
Copy after login
import(/* webpackIgnore: true */ 'ignored-module.js');
Copy after login

webpackIgnore: When set to true, disables dynamic import parsing.

Warning:

Note: Setting webpackIgnore to true will not perform code splitting.

webpackChunkName: The name of the new chunk. Starting with webpack 2.6.0, the placeholders [index] and [request] support incremented numbers or actual parsed filenames respectively. After adding this annotation, the individual chunks given to us will be named [my-chunk-name].js instead of [id].js.

webpackMode: Starting with webpack 2.6.0, you can specify a different mode to parse dynamic imports. The following options are supported:

  • 'lazy' (default value): Generate a lazy-loadable module for each import() imported module. chunk.

  • 'lazy-once': Generates a single lazy-loadable chunk that can satisfy all import() calls. This chunk will be obtained on the first import() call, and subsequent import()s will use the same network response. Note that this mode only makes sense in some dynamic statements, such as import(`./locales/${language}.json`), which may contain multiple requested module paths.

  • 'eager': No additional chunks will be generated. All modules are imported by the current chunk and no additional network requests are made. However, a Promise in resolved state will still be returned. In contrast to static imports, the module will not be executed until the call to import() completes.

  • 'weak': Try to load the module, if the module function has been loaded in other ways, (that is, another chunk has imported this module, or contains the module script is loaded). A Promise will still be returned, but will only be resolved successfully if the chunk is already available on the client. If the module is not available, a rejected Promise is returned and the network request is never executed. This is useful for Universal Rendering (SSR) when the required chunks are always provided manually in the initial request (embedded in the page), rather than when the application navigation is triggered on a module import that was not initially provided.

webpackPrefetch: Tells the browser that this resource may be needed for certain navigation jumps in the future.

webpackPreload: Tells the browser that the resource may be needed during the current navigation.

webpackInclude: Regular expression used for matching during import resolution. Only matching modules will be packaged.

webpackExclude: Regular expression used for matching during import resolution. All matching modules will not be packaged.

webpackExports: Tell webpack to only build dynamic import() modules with specified exports. It can reduce chunk size. Available from webpack 5.0.0-beta.18 onwards.

[Related recommendations: javascript learning tutorial]

The above is the detailed content of Does webpack support es6?. For more information, please follow other related articles on the PHP Chinese website!

Statement of this Website
The content of this article is voluntarily contributed by netizens, and the copyright belongs to the original author. This site does not assume corresponding legal responsibility. If you find any content suspected of plagiarism or infringement, please contact admin@php.cn

Hot AI Tools

Undresser.AI Undress

Undresser.AI Undress

AI-powered app for creating realistic nude photos

AI Clothes Remover

AI Clothes Remover

Online AI tool for removing clothes from photos.

Undress AI Tool

Undress AI Tool

Undress images for free

Clothoff.io

Clothoff.io

AI clothes remover

AI Hentai Generator

AI Hentai Generator

Generate AI Hentai for free.

Hot Article

R.E.P.O. Energy Crystals Explained and What They Do (Yellow Crystal)
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌
R.E.P.O. Best Graphic Settings
2 weeks ago By 尊渡假赌尊渡假赌尊渡假赌

Hot Tools

Notepad++7.3.1

Notepad++7.3.1

Easy-to-use and free code editor

SublimeText3 Chinese version

SublimeText3 Chinese version

Chinese version, very easy to use

Zend Studio 13.0.1

Zend Studio 13.0.1

Powerful PHP integrated development environment

Dreamweaver CS6

Dreamweaver CS6

Visual web development tools

SublimeText3 Mac version

SublimeText3 Mac version

God-level code editing software (SublimeText3)

VUE3 Getting Started Tutorial: Packaging and Building with Webpack VUE3 Getting Started Tutorial: Packaging and Building with Webpack Jun 15, 2023 pm 06:17 PM

Vue is an excellent JavaScript framework that can help us quickly build interactive and efficient web applications. Vue3 is the latest version of Vue, which introduces many new features and functionality. Webpack is currently one of the most popular JavaScript module packagers and build tools, which can help us manage various resources in our projects. This article will introduce how to use Webpack to package and build Vue3 applications. 1. Install Webpack

How to reverse an array in ES6 How to reverse an array in ES6 Oct 26, 2022 pm 06:19 PM

In ES6, you can use the reverse() method of the array object to achieve array reversal. This method is used to reverse the order of the elements in the array, putting the last element first and the first element last. The syntax "array.reverse()". The reverse() method will modify the original array. If you do not want to modify it, you need to use it with the expansion operator "...", and the syntax is "[...array].reverse()".

Is async for es6 or es7? Is async for es6 or es7? Jan 29, 2023 pm 05:36 PM

async is es7. async and await are new additions to ES7 and are solutions for asynchronous operations; async/await can be said to be syntactic sugar for co modules and generator functions, solving js asynchronous code with clearer semantics. As the name suggests, async means "asynchronous". Async is used to declare that a function is asynchronous; there is a strict rule between async and await. Both cannot be separated from each other, and await can only be written in async functions.

What is the difference between vite and webpack What is the difference between vite and webpack Jan 11, 2023 pm 02:55 PM

Differences: 1. The startup speed of the webpack server is slower than that of Vite; because Vite does not require packaging when starting, there is no need to analyze module dependencies and compile, so the startup speed is very fast. 2. Vite hot update is faster than webpack; in terms of HRM of Vite, when the content of a certain module changes, just let the browser re-request the module. 3. Vite uses esbuild to pre-build dependencies, while webpack is based on node. 4. The ecology of Vite is not as good as webpack, and the loaders and plug-ins are not rich enough.

How to find different items in two arrays in es6 How to find different items in two arrays in es6 Nov 01, 2022 pm 06:07 PM

Steps: 1. Convert the two arrays to set types respectively, with the syntax "newA=new Set(a);newB=new Set(b);"; 2. Use has() and filter() to find the difference set, with the syntax " new Set([...newA].filter(x =>!newB.has(x)))", the difference set elements will be included in a set collection and returned; 3. Use Array.from to convert the set into an array Type, syntax "Array.from(collection)".

How to use PHP and webpack for modular development How to use PHP and webpack for modular development May 11, 2023 pm 03:52 PM

With the continuous development of web development technology, front-end and back-end separation and modular development have become a widespread trend. PHP is a commonly used back-end language. When doing modular development, we need to use some tools to manage and package modules. Webpack is a very easy-to-use modular packaging tool. This article will introduce how to use PHP and webpack for modular development. 1. What is modular development? Modular development refers to decomposing a program into different independent modules. Each module has its own function.

Why does the mini program need to convert es6 to es5? Why does the mini program need to convert es6 to es5? Nov 21, 2022 pm 06:15 PM

For browser compatibility. As a new specification for JS, ES6 adds a lot of new syntax and API. However, modern browsers do not have high support for the new features of ES6, so ES6 code needs to be converted to ES5 code. In the WeChat web developer tools, babel is used by default to convert the developer's ES6 syntax code into ES5 code that is well supported by all three terminals, helping developers solve development problems caused by different environments; only in the project Just configure and check the "ES6 to ES5" option.

What does es6 temporary Zenless Zone Zero mean? What does es6 temporary Zenless Zone Zero mean? Jan 03, 2023 pm 03:56 PM

In es6, the temporary dead zone is a syntax error, which refers to the let and const commands that make the block form a closed scope. Within a code block, before a variable is declared using the let/const command, the variable is unavailable and belongs to the variable's "dead zone" before the variable is declared; this is syntactically called a "temporary dead zone". ES6 stipulates that variable promotion does not occur in temporary dead zones and let and const statements, mainly to reduce runtime errors and prevent the variable from being used before it is declared, resulting in unexpected behavior.

See all articles