新建一个空项目:
// 新建 webpack-demo 文件夹mkdir webpack-demo// 进入 webpack-demo 目录cd ./webpack-demo// 初始化项目npm init -y
新建 2 个 js 文件,并进行模块化开发:
// 进入项目目录
cd ./webpack-demo
// 创建 src 文件夹
mkdir src
// 创建 js文件
touch index.js
touch hello.js
index.js
// index.js
import './hello.js'
console.log('index')
hello.js
// hello.js
console.log('hello webpack')
项目结构
- src
- index.js
- hello.js
- package.json
- node_modules
