安裝nvm
github.com/nvm-sh/nvmjavascript
ps: nvm(Node.js Version Manager)也就是 Node.js 的包管理器,能夠經過它方便安裝和切換不一樣的Node.js版本。
複製代碼
Mac經過 curl 安裝:curl -o- https://raw.githubusercontent.com/nvm-sh/nvm/v0.34.0/install.sh | bash
html
Windows的安裝方法 參考這裏java
檢查node和NPM版本安裝成功以下:node
npm install webpack webpack-cli --save-devwebpack
檢查是否安裝成功 cd node_modules.bin> webpack -vgit
在項目根目錄下建立一個webpack.config.js
文件github
'use strict';
const path = require('path');
module.exports = {
entry: './src/index.js',
output: {
path: path.join(__dirname, 'dist'),// 打包的文件夾名
filename: 'bundle.js' // 打包的文件名
},
mode: 'production'
}
複製代碼
同時,在項目根目錄下,建立src文件夾及其子文件helloworld.js
和index.js
web
helloworld.js
npm
export function helloworld() {
return 'hello webpack';
}
複製代碼
index.js
json
import { helloworld } from './helloworld';
document.write(helloworld());
複製代碼
這樣一個簡單的demo就完成了,在工程命令行中執行命令 webpack
開始打包工程。
打包好的結果是這樣的:
因爲咱們打包出來的dist文件夾下面是沒有html文件的,因此咱們在dist文件夾下新建一個index.html
文件,而後將bundle.js引進來。而後在瀏覽器中打開,一個簡單的demo效果就出來了。
'use strict';
const path = require('path');
module.exports = {
entry: './src/index.js', // 用來指定webpack的打包入口 // 若是是Windows電腦應該這樣配置 entry: '../../src/index.js',
output: {
path: path.join(__dirname, 'dist'),
filename: 'bundle.js' // 打包的文件名
},
mode: 'production'
}
複製代碼
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>Hello Webpack</title>
</head>
<body>
<script src="./bundle.js" type="text/javascript"></script>
</body>
</html>
複製代碼