webpack4:基本使用

Posted Samve

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了webpack4:基本使用相关的知识,希望对你有一定的参考价值。

webpack是基于Node构建,所以wepack支持所有Node API和语法。

即:Chrome浏览器能支持的ECMAScript语法(排除DOM、BOM),wbpack都能支持。Chrome不支持ES6,所以webpack也不支持。

创建基本的webpack4.x项目:

创建后的目录:

其中:

package.json:

{
  "name": "wp4-1",
  "version": "1.0.0",
  "description": "",
  "main": "index.js",
  "scripts": {
    "test": "echo \\"Error: no test specified\\" && exit 1"
  },
  "keywords": [],
  "author": "",
  "license": "ISC",
  "devDependencies": {
    "webpack": "^4.41.5",
    "webpack-cli": "^3.3.10"
  }
}

webpack.config.js:

module.exports = {
    mode: \'production\' // development 或 production
}

index.js:

console.log("hello webpack4.0!");

index.html

<!DOCTYPE html>
<html lang="en">
<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>
    <script src="../dist/main.js"></script>
</head>
<body>
    
</body>
</html>

cmd中运行“webpack”命令打包。

以上是关于webpack4:基本使用的主要内容,如果未能解决你的问题,请参考以下文章

一行一行手敲webpack4配置

webpack4基本配置

webpack4.0各个击破—— CSS篇

webpack4.16压缩打包

webpack4的配置你都掌握了么?

html PHP代码片段: - AJAX基本示例:此代码演示了使用PHP和JavaScript实现的基本AJAX功能。