1. 创建并进入空文件夹,初始化package

  1. npm init

2. 创建项目其他文件

以下是完整的项目目录:

  • 根目录
    • src
      • core
        • a.js
        • b.js
        • c.js
        • d.js
      • index.js
    • index.html
    • webpack.config.js
    • package.json

index.js 项目入口文件

  1. import * as a from './a'

a.js

  1. import * as b from './b'
  2. import * as d from './d'
  3. console.log('file: a.js')

b.js

  1. import * as c from './c'
  2. console.log('file: b.js')

c.js

  1. console.log('file: c.js')

d.js

  1. console.log('file: d.js')

index.html

  1. <!DOCTYPE html>
  2. <html>
  3. <head>
  4. <meta charset="utf-8" />
  5. <meta http-equiv="X-UA-Compatible" content="IE=edge">
  6. <title>webapck</title>
  7. <meta name="viewport" content="width=device-width, initial-scale=1">
  8. <script src="./dist/index.js"></script>
  9. </head>
  10. <body>
  11. </body>
  12. </html>

3. 安装webpack

修改package.json,如下。执行 npm i 安装webpack

package.json

  1. {
  2. "name": "webpack",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "dev": "webpack --config webpack.config.js"
  9. },
  10. "author": "",
  11. "license": "ISC",
  12. "devDependencies": {
  13. "webpack": "^4.39.3",
  14. "webpack-cli": "^3.3.7"
  15. }
  16. }

4. 配置webpack.config.js

webpack.config.js

  1. const path = require('path');
  2. module.exports = {
  3. entry: './src/index.js',
  4. output: {
  5. filename: 'index.js',
  6. path: path.resolve(__dirname, 'dist')
  7. }
  8. }

5. 编译打包

执行 npm run dev

执行完后,会在根目录创建一个 dist 的文件夹,里面含有一个最终打包好的js文件,在html里直接引用这个js即可。

6. 思考题

core文件夹下每个js都有个console,它们打印的顺序是?

7. 打印结果

image.png

8. 结论

js引用关系图
image.png

webpack会从 webpack.config.js 配置entry的入口js文件开始读起,从上到下按顺序执行。webpack读取js会先看有没有import 。

如果有import,则按import的顺序依次读取导入的js。
如果没有import,则继续执行当前js代码。
执行完当前js代码,会回退到上个js继续执行,直到回退到入口文件index.js
如果已经import过的js,则不再重复导入

该项目具体执行顺序

  • 首先读取index.js,发现有import a.js
  • 进入a.js ,发现有import ,导入第一个文件 b.js
  • 进入b.js,发现有import,进入 c.js
  • 在c.js里没有import,则执行c.js里面的代码,此时打印 console.log(‘file: c.js’)
  • 执行完c.js后,回退到上个js,即b.js
  • 执行b.js代码,此时打印 console.log(‘file: b.js’)
  • 执行完b.js,回退到上个js,即a.js
  • 在a.js,导入第二个文件 d.js
  • 进入d.js,没有导入的js,则执行当前js代码,此时打印 console.log(‘file: d.js’)
  • 执行完d.js,回退到a.js,继续执行a.js代码,此时打印 console.log(‘file: a.js’)
  • 执行完a.js,回退到index.js,结束!

9. 代码

webpack.zip

10. 如果是ts,该怎么配置

安装 typescript ts-loader

_
修改 package.json,并执行 npm i 重新安装

  1. {
  2. "name": "webpack",
  3. "version": "1.0.0",
  4. "description": "",
  5. "main": "index.js",
  6. "scripts": {
  7. "test": "echo \"Error: no test specified\" && exit 1",
  8. "dev": "webpack --config webpack.config.js"
  9. },
  10. "author": "",
  11. "license": "ISC",
  12. "devDependencies": {
  13. "ts-loader": "^6.0.4",
  14. "typescript": "^3.6.2",
  15. "webpack": "^4.39.3",
  16. "webpack-cli": "^3.3.7"
  17. }
  18. }

修改webpack.config.js

  1. const path = require('path');
  2. module.exports = {
  3. entry: './src/index.ts',
  4. output: {
  5. filename: 'index.js',
  6. path: path.resolve(__dirname, 'dist')
  7. },
  8. module:{
  9. rules: [
  10. {
  11. test: /\.tsx?$/,
  12. use: 'ts-loader'
  13. }
  14. ]
  15. },
  16. resolve: {
  17. extensions:['.ts','.js']
  18. }
  19. }

把js文件后缀都改为ts,然后执行 npm run dev 编译打包