webpack系列之webpack-dev-server 及配置HTML插件(html-webpack-plugin)

上一节补充:
如果存在webpack.config.js文件,则运行npx webpack命令后,将会自动读取文件内的相关配置。我们将webpack.config.js文件名改为webpack.config.my.js文件,那么怎么才能手动指定webpack读取webpack.config.my.js文件里的配置内容呢?别着急,你可以通过如下命令进行实现。

npx webpack --config webpack.config.my.js

1. webpack-dev-server
webpack-dev-server 为你提供了一个简单的 web 服务器,并且能够实时重新加载(live reloading),仅在开发环境中使用。

  • (1)安装命令,如下:

yarn add webpack-dev-server -D

  • (2)运行命令,如下:

npx webpack-dev-server

  • 打开浏览器,输入:http://localhost:8080/, 我们可以访问当前路径(webpackDemo1)的所有文件(当前路径:为运行npx webpack-dev-server 命令的路径)
    在这里插入图片描述
    在这里插入图片描述
  • (3)在webpack.config.js文件中配置devServer
module.exports = {
  devServer: {//开发服务器的配置
    //端口号配置,默认为8080
    port: 3000,
    //进度条
    progress: true,
    //指定打开浏览器显示的目录,默认为根目录(项目目录)
    contentBase: './dist'
  },
  ...
}
  • (4)重新开启服务器npx webpack-dev-server

在这里插入图片描述
(5)从上述运行结果可以看到,开启了3000端口,打开浏览器,输入http://localhost:3000/,可以看到进入了dist目录下,也可以点击打开bundle.js文件
在这里插入图片描述
其他关于devServer的配置参数
2. html-webpack-plugin
其实上面的配置的真正用途并不是让我们显示js文件内容,而是将打包生成的js文件自动引入到我们自己的html文件中。接下来我们去看看如何实现?

  • (1)安装html-webpack-plugin插件

yarn add html-webpack-plugin -D

  • (2)在webpack.config.js文件中对html-webpack-plugin插件进行引入及配置
//引入
let HtmlWebpackPlugin = require('html-webpack-plugin');
...
module.exports = {
...
 plugins: [ //数组:放着所有的webpack插件
 	// 配置
    new HtmlWebpackPlugin({
      template: './src/index.html',
      filename: 'index1.html'
    })
  ]
}
  • (3)我们来解释一下上述中的配置,其中,template意为模板,值为自己所创建编写的html文件路径。
    我们在src目录下,创建一个名为index.html文件,代码如下:
<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div>
    Hello Webpack!
  </div>
</body>
</html>

template就是指定打包的bundle.js文件所引入的HTML文件。而filename属性的意思就是所生成HTML文件名(任意),内容只是比template所指的HTML文件多引入了bundle.js

  • (4)运行打包命令npx webpack
    生成了dist文件夹及bundle.jsindex1.html文件
<!DOCTYPE html>
<html lang="zh-CN">
<head>
  <meta charset="UTF-8">
  <meta name="viewport" content="width=device-width, initial-scale=1.0">
  <meta http-equiv="X-UA-Compatible" content="ie=edge">
  <title>Document</title>
</head>
<body>
  <div>
    Hello Webpack!
  </div>
<script type="text/javascript" src="bundle.js"></script></body>
</html>

我们可以看到index1.html文件只是多了一个标签。

  • (5)运行开启服务器命令npx webpack-dev-server,打开浏览器,输入http://localhost:3000/
    在这里插入图片描述
    点击index1.html文件
    在这里插入图片描述
    那如何一输入http://localhost:3000/就能打开html文件呢。很简单啦!在配置文件内,将filename值为index.html,而不是index1.html,这样生成的HTML文件名为index.html。输入一个有效网址,将自动打开index.html文件。

大家可以上我的github上下载:

  • 0
    点赞
  • 0
    收藏
    觉得还不错? 一键收藏
  • 0
    评论
在使用 Webpack 构建项目时,我们可以使用 `html-webpack-plugin` 件来自动生成 HTML 文件,并且将打包后的 JS/CSS 文件注入到 HTML 文件中。其中,`html-webpack-plugin` 也支持一些配置项来满足不同的需求,其中就包括设置生成的 HTML 文件中的版本号。 在生成的 HTML 文件中,我们可以通过以下方式给所有的 JS/CSS 文件添加版本号: ```html <link rel="stylesheet" href="styles.css?v=<%= htmlWebpackPlugin.options.version %>"> <script src="bundle.js?v=<%= htmlWebpackPlugin.options.version %>"></script> ``` 其中,`htmlWebpackPlugin.options.version` 是 `html-webpack-plugin` 的配置项,我们需要将其在 webpack配置文件中进行设置。具体操作如下: 1. 安装 `html-webpack-plugin` 件: ```bash npm install --save-dev html-webpack-plugin ``` 2. 在 webpack配置文件中引入 `html-webpack-plugin` 件: ```javascript const HtmlWebpackPlugin = require('html-webpack-plugin'); ``` 3. 在 `plugins` 数组中添加 `html-webpack-plugin` 的实例,并设置 `version` 配置项: ```javascript plugins: [ new HtmlWebpackPlugin({ template: './src/index.html', version: '1.0.0' }) ] ``` 其中,`template` 指定了模板文件,`version` 指定了版本号。 4. 在模板文件中使用 `<%= htmlWebpackPlugin.options.version %>` 来引用版本号: ```html <!DOCTYPE html> <html lang="en"> <head> <meta charset="UTF-8"> <title>My App</title> <link rel="stylesheet" href="styles.css?v=<%= htmlWebpackPlugin.options.version %>"> </head> <body> <div id="app"></div> <script src="bundle.js?v=<%= htmlWebpackPlugin.options.version %>"></script> </body> </html> ``` 这样,就可以在生成的 HTML 文件中给所有的 JS/CSS 文件添加版本号了。
评论
添加红包

请填写红包祝福语或标题

红包个数最小为10个

红包金额最低5元

当前余额3.43前往充值 >
需支付:10.00
成就一亿技术人!
领取后你会自动成为博主和红包主的粉丝 规则
hope_wisdom
发出的红包
实付
使用余额支付
点击重新获取
扫码支付
钱包余额 0

抵扣说明:

1.余额是钱包充值的虚拟货币,按照1:1的比例进行支付金额的抵扣。
2.余额无法直接购买下载,可以购买VIP、付费专栏及课程。

余额充值