webpack學習(六):使用webpack-dev-serve
阿新 • • 發佈:2018-12-11
demo地址: https://github.com/Lkkkkkkg/webpack-demo
上次使用source map功能: https://blog.csdn.net/qq593249106/article/details/84921131**
繼上次配置完HtmlWebpackPlugin之後, 現在開始使用 webpack-dev-serve 方便開發, 當前目錄結構:
|- /dist //用於放打包後文件的資料夾
|- app.bundle.js //出口檔案
|- print.bundle.js //出口檔案
|- index.html //模板檔案
|- /node_modules
| - /src //用於放原始檔的資料夾
|- index.js //入口檔案
|- print.js //入口檔案
|- package.json
|- webpack.config.js //webpack配置檔案
webpack-dev-server提供了一個簡單的 web 伺服器, 並且能夠實時重新載入(live reloading), 也就是啟動了 webpack-dev-server 之後, 每次修改原始檔程式碼就不用再手動重新構建, 它會自動檢測到程式碼變化, 自動重新構建
安裝
npm install webpack-dev-server --save-dev
配置webpack.config.js
webpack.config.js
const path = require('path');
const HtmlWebpackPlugin = require('html-webpack-plugin');
const CleanWebpackPlugin = require('clean-webpack-plugin');
module.exports = {
entry: {
app: './src/index.js', //多個入口檔案
print: './src/print.js'
},
devtool: 'inline-source-map' , // 不同選項適用於不同環境
devServer: {
contentBase: './dist', //將dist目錄下的檔案(index.html)作為可訪問檔案, 如果不寫這個引數則預設與webpack.cofig.js的同級目錄
port: 8080 //埠號設為8080, 預設也是8080
},
plugins: [ //webpack 通過 plugins 實現各種功能, 比如 html-webpack-plugin 使用模版生成 html 檔案
new CleanWebpackPlugin(['dist']), //設定清除的目錄
new HtmlWebpackPlugin({
filename: 'index.html', //設定生成的HTML檔案的名稱, 支援指定子目錄,如:assets/admin.html
})
],
output: {
filename: '[name].bundle.js', //根據入口檔案輸出不同出口檔案
path: path.resolve(__dirname, 'dist')
}
};
新增一個NPM指令碼方便執行
package.json
{
"name": "demo05",
"version": "1.0.0",
"description": "",
"main": "index.js",
"scripts": {
"test": "echo \"Error: no test specified\" && exit 1",
"build": "webpack",
"dev": "webpack-dev-server --open" //--open的意思是開啟伺服器之後自動開啟
},
"author": "",
"license": "ISC",
"devDependencies": {
"clean-webpack-plugin": "^1.0.0",
"html-webpack-plugin": "^3.2.0",
"webpack": "^4.27.1",
"webpack-cli": "^3.1.2",
"webpack-dev-server": "^3.1.10"
},
"dependencies": {
"lodash": "^4.17.11"
}
}
執行伺服器
終端輸入 npm run dev, 就會看到瀏覽器自動載入了網頁, 這時候我在 index.js 修改程式碼, 它也會自動重新構建載入修改後的網頁:
開啟伺服器之後, 發現目錄結構發生了變化:
|- /node_modules
|- /src //用於放原始檔的資料夾
|- index.js //入口檔案
|- print.js //入口檔案
|- package.json
|- webpack.config.js //webpack配置檔案
dist 資料夾不見了, 這是因為被 CleanWebpackPlugin 給清除了, 這是因為使用 webpack-dev-serve 程式碼在伺服器執行, 不會打包進 dist, 沒有產生新的 dist 資料夾