This article mainly introduces the detailed explanation of webpack's devtool. Now I will share it with you and give you a reference.
About Devtool
This option controls whether and how source maps are generated. The optional values given on the official website are:
Some of the values are suitable for development and some are for production. For development, you generally want fast Source Maps, at the expense of bundle size, but for production, you want independent Source Maps, which are precise and support minimization.
Choose a source mapping style to enhance the debugging process. These values can significantly affect build and rebuild speed. Instead of using the devtool option you can also use SourceMapDevToolPlugin/EvalSourceMapDevToolPlugin directly for more options. Do not use devtool options and plugins at the same time. The devtool option adds the plugin internally, so you end up with the plugin applied twice.
Detailed Example
1. Create new print.js
export default function printMe() { console.log('武昌鱼@222'); }
2. Create new index.js
import printMe from './print.js'; function component() { var element = document.createElement('p'); var btn = document.createElement('button'); btn.innerHTML = 'Click 1me and check 1the console!'; btn.onclick = printMe; element.appendChild(btn); return element; } document.body.appendChild(component());
3. Create new webpack .config.js
const path = require('path'); const CleanWebpackPlugin = require('clean-webpack-plugin'); const HtmlWebpackPlugin = require('html-webpack-plugin'); module.exports = { entry: './src/index.js', output: { filename: '[name].js', path: path.resolve(__dirname, 'dist') }, plugins: [ new CleanWebpackPlugin(['dist']), new HtmlWebpackPlugin({ title: ' webpack之devtool' }) ] };
4. Use different devtool options
none
After packaging, click the print button, and the console displays main.js:96 , the generated code is as follows:
eval
eval mode will encapsulate each module into eval. It will be executed and a comment will be appended at the end.
Each module is executed withevaland//@ sourceURL.
After packaging, click the print button, the console displays print.js:3, and the generated code is as follows:
source-map
After packaging, you will find an additional index.js.map file in your output directory. This file records the sourceMap How row and column information maps to source code information. Click the print button, the console displays print.js:3, and the generated code is as follows:
main.js
main.js.map
hidden-source-map
After packaging, main.js has less end comments than the source-map option, but in the output directory The index.js.map is no less. Click the print button and the console displays main.js:96.
inline-source-map
After packaging, you can see the comment at the end sourceMap is embedded in the bundle in the form of DataURL, because all the information of sourceMap was added to the bundle, and the entire bundle file became extremely large. Click the print button, the console displays print.js:3, and the generated code is as follows:
main.js
eval-source-map
Similar to eval, but the sourceMap in the comments is converted to DataURL. The console displays print.js?dc38:2, and the generated code is as follows:
main.js
cheap-source-map
The results generated by source-map are similar. The content of index.js in the output directory is the same. However, the content of index.js.map generated by cheap-source-map is much less code than the index.js.map generated by source-map. Let’s compare the results of index.js.map generated by source-map above. It is found that the source attribute is missing a column of information, as shown below:
main.js.map
cheap-module-source-map
Generate a map without column mapping in a separate file. Without column mapping, it improves the packaging speed, but it also makes the browser developer tools only correspond to specific rows and cannot correspond to each other. To the specific column (symbol), it will cause inconvenience in debugging;
Summary
Recommended for development environment:
1.eval: Each module is executed using eval() and //@sourceURL. It's very fast. The main drawback is that it does not display the line number correctly because it is mapped to the transformed code rather than the original code (no source mapping from the loader).
2.eval-source-map: Each module is executed using eval(), and SourceMap is added to eval() as DataUrl. Initially it is slow, but it provides fast rebuild speeds and produces realistic files. The line number is mapped correctly as it was mapped to the original code. It produces the highest quality development resources.
3.cheap-eval-source-map: Similar to eval-source-map, each module is executed using eval(). It has no column mapping, it only maps row numbers. It ignores the source code from the loader and only displays the transformed code similar to eval devtool.
4.cheap-module-eval-source-map: Similar to cheap-eval-source-map, in this case the source map from the loader is processed for better results. However, the loader source map is reduced to a single map per line.
Recommended for production environment:
1.(none): (Omit the devtool option) - Does not trigger SourceMap. This is a great choice.
2.source-map: A complete SourceMap is as a separate file. It adds a reference annotation to the bundle so development tools know where to find it.
3.hidden-source-map: Same as source-map, but does not add reference comments to the bundle. Use this option if you only want SourceMaps to map error stack traces from error reports, but don't want to expose your SourceMap to browser development tools.
4.nosources-source-map: A SourceMap is created without source code. It can be used to map stack traces on the client machine without exposing all source code. You can deploy source map files to the webserver.
The above is what I compiled for everyone. I hope it will be helpful to everyone in the future.
Related articles:
Comparison of map, set, array, and object in ES6 (detailed tutorial)
How to use Node.js Implementing a static server
How to implement the corresponding callback function after loading using JS script
The above is the detailed content of Detailed explanation of using devtool in webpack. For more information, please follow other related articles on the PHP Chinese website!

Vue是一款优秀的JavaScript框架,它可以帮助我们快速构建交互性强、高效性好的Web应用程序。Vue3是Vue的最新版本,它引入了很多新的特性和功能。Webpack是目前最流行的JavaScript模块打包器和构建工具之一,它可以帮助我们管理项目中的各种资源。本文就为大家介绍如何使用Webpack打包和构建Vue3应用程序。1.安装Webpack

区别:1、webpack服务器启动速度比vite慢;由于vite启动的时候不需要打包,也就无需分析模块依赖、编译,所以启动速度非常快。2、vite热更新比webpack快;vite在HRM方面,当某个模块内容改变时,让浏览器去重新请求该模块即可。3、vite用esbuild预构建依赖,而webpack基于node。4、vite的生态不及webpack,加载器、插件不够丰富。

随着Web开发技术的不断发展,前后端分离、模块化开发已经成为了一个广泛的趋势。PHP作为一种常用的后端语言,在进行模块化开发时,我们需要借助一些工具来实现模块的管理和打包,其中webpack是一个非常好用的模块化打包工具。本文将介绍如何使用PHP和webpack进行模块化开发。一、什么是模块化开发模块化开发是指将程序分解成不同的独立模块,每个模块都有自己的作

在vue中,webpack可以将js、css、图片、json等文件打包为合适的格式,以供浏览器使用;在webpack中js、css、图片、json等文件类型都可以被当做模块来使用。webpack中各种模块资源可打包合并成一个或多个包,并且在打包的过程中,可以对资源进行处理,如压缩图片、将scss转成css、将ES6语法转成ES5等可以被html识别的文件类型。

Webpack是一款模块打包工具。它为不同的依赖创建模块,将其整体打包成可管理的输出文件。这一点对于单页面应用(如今Web应用的事实标准)来说特别有用。

配置方法:1、用导入的方法把ES6代码放到打包的js代码文件中;2、利用npm工具安装babel-loader工具,语法“npm install -D babel-loader @babel/core @babel/preset-env”;3、创建babel工具的配置文件“.babelrc”并设定转码规则;4、在webpack.config.js文件中配置打包规则即可。

随着现代Web应用程序的复杂性不断增加,构建优秀的前端工程和插件系统变得越来越重要。随着SpringBoot和Webpack的流行,它们成为了一个构建前端工程和插件系统的完美组合。SpringBoot是一个Java框架,它以最小的配置要求来创建Java应用程序。它提供了很多有用的功能,比如自动配置,使开发人员可以更快、更容易地搭建和部署Web应用程序。W

Laravel开发:如何使用LaravelMix和Webpack优化文件大小?Laravel是一个非常流行的PHP框架,它提供了许多功能和工具,帮助开发者在构建Web应用程序时提高生产效率。其中,LaravelMix和Webpack是两个强大的工具,它们可以帮助您优化文件大小和提高性能。在本文中,我们将介绍如何使用LaravelMix和Webpack优


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

AI Hentai Generator
Generate AI Hentai for free.

Hot Article

Hot Tools

Safe Exam Browser
Safe Exam Browser is a secure browser environment for taking online exams securely. This software turns any computer into a secure workstation. It controls access to any utility and prevents students from using unauthorized resources.

ZendStudio 13.5.1 Mac
Powerful PHP integrated development environment

SublimeText3 English version
Recommended: Win version, supports code prompts!

Zend Studio 13.0.1
Powerful PHP integrated development environment

Dreamweaver CS6
Visual web development tools
