How to extract third-party libraries using webpack
This article mainly introduces the correct posture of webpack to extract third-party libraries. There are two commonly used methods to extract third-party libraries. This article introduces these two methods in detail. Those who are interested can learn more
When we use webpack to package, we often want to extract the third-party library separately, use it as a stable version file, and use the browsing cache to reduce the number of requests. There are two commonly used methods to extract third-party libraries
CommonsChunkPlugin
DLLPlugin
The difference : The first method requires the third-party library to be run and packaged once every time it is packaged. The second method only packages the project files each time. We only need to quote the third-party compressed file that was packaged for the first time.
CommonsChunkPlugin method introduction
Let’s take vue as an example
const vue = require('vue') { entry: { // bundle是我们要打包的项目文件的导出名字, app是入口js文件 bundle: 'app', // vendor就是我们要打包的第三方库最终生成的文件名,数组里是要打包哪些第三方库, 如果不是在node——modules里面,可以填写库的具体地址 vendor: ['vue'] }, output: { path: __dirname + '/bulid/', // 文件名称 filename: '[name].js' }, plugins: { // 这里实例化webpack.optimize.CommonsChunkPlugin构造函数 // 打包之后就生成vendor.js文件 new webpack.optimize.CommonsChunkPlugin('vendor', 'vendor.js') } }
Then package the generated file and introduce it into the html file
<script src="/build/vendor.js"></script> <script src="/build/bundle.js"></script>
DLLPlugin method Introduction
First prepare two files
webpack.config.js
- ##webpack.dll.config. js
const webpack = require('webpack') const library = '[name]_lib' const path = require('path') module.exports = { entry: { vendors: ['vue', 'vuex'] }, output: { filename: '[name].dll.js', path: 'dist/', library }, plugins: [ new webpack.DllPlugin({ path: path.join(__dirname, 'dist/[name]-manifest.json'), // This must match the output.library option above name: library }), ], }
const webpack = require('webpack') module.exports = { entry: { app: './src/index' }, output: { filename: 'app.bundle.js', path: 'dist/', }, plugins: [ new webpack.DllReferencePlugin({ context: __dirname, manifest: require('./dist/vendors-manifest.json') }) ] }
$ webpack --config webpack.dll.config.js $ webpack --config webpack.config.js
<script src="/dist/vendors.dll.js"></script> <script src="/dist/app.bundle.js"></script>
JavaScript module optimization
How to use webpack express to achieve multi-page site development
Webpack framework (mastering core technology)
How to control multiple scroll bars to scroll synchronously using JS
Use vue-cli How webpack builds vue
The above is the detailed content of How to extract third-party libraries using webpack. For more information, please follow other related articles on the PHP Chinese website!

Hot AI Tools

Undresser.AI Undress
AI-powered app for creating realistic nude photos

AI Clothes Remover
Online AI tool for removing clothes from photos.

Undress AI Tool
Undress images for free

Clothoff.io
AI clothes remover

Video Face Swap
Swap faces in any video effortlessly with our completely free AI face swap tool!

Hot Article

Hot Tools

Notepad++7.3.1
Easy-to-use and free code editor

SublimeText3 Chinese version
Chinese version, very easy to use

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools

SublimeText3 Mac version
God-level code editing software (SublimeText3)

Hot Topics

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

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.

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.

In Go language, it is very convenient to use third-party libraries. Many excellent third-party libraries and frameworks can help us develop applications quickly, while also reducing the workload of writing code ourselves. But how to use third-party libraries correctly to ensure their stability and reliability is a problem we must understand. This article will introduce how to use third-party libraries from the following aspects, and explain them with specific examples. 1. Obtaining third-party libraries There are two ways to obtain third-party libraries in Go language: 1. Use the goget command first

Configuration method: 1. Use the import method to put the ES6 code into the packaged js code file; 2. Use the npm tool to install the babel-loader tool, the syntax is "npm install -D babel-loader @babel/core @babel/preset- env"; 3. Create the configuration file ".babelrc" of the babel tool and set the transcoding rules; 4. Configure the packaging rules in the webpack.config.js file.

How to install and use third-party libraries in Go language? Go language has become one of the most popular modern programming languages because it has many very useful features and benefits. It is a very easy-to-learn language that can be used to write a variety of programs. Similar to many other programming languages, Go also has a large number of third-party libraries that can help you write code more efficiently and provide a lot of functions and a modular component structure. This article will introduce how to use Go's third-party libraries. Find and select third parties

As the complexity of modern web applications continues to increase, building excellent front-end engineering and plug-in systems has become increasingly important. With the popularity of Spring Boot and Webpack, they have become a perfect combination for building front-end projects and plug-in systems. SpringBoot is a Java framework that creates Java applications with minimal configuration requirements. It provides many useful features, such as automatic configuration, so that developers can build and deploy web applications faster and easier. W

Simple and easy-to-understand tutorial: How to use pip to install third-party libraries, specific code examples are required Introduction: In Python development, we often need to use third-party libraries to implement various functions. Pip is Python's package management tool, which can help us install and manage third-party libraries quickly and easily. This article will introduce how to use pip to install third-party libraries and give specific code examples. Step 1: Check the installation of Python and pip Before starting, we need to check the Python installation
