webpack 是一個現代 JavaScript 應用程序的靜態模塊打包器,前端模塊化的基礎。做爲一個前端工程師(切圖仔),很是有必要學習。前端
webpack官網的文檔很是的棒,中文文檔也很是給力,能夠媲美vue的文檔。建議先看概念篇章,再看指南,而後看API和配置總覽。看完指南教程後,須要自主動手練習才能更加有影響,這裏記錄下我搭建react開發環境的過程vue
```
yarn add webpack webpack-cli -D
```
複製代碼
```
config
webpack.common.js
webpack.dev.js
webpack.prod.js
scripts
build.js // 構建模式腳本
start.js // 開發模式腳本
src
index.js
package.json
```
複製代碼
package.jsonnode
```
...
"license": "MIT",
+ "scripts": {
+ "start": "node ./scripts/start.js",
+ "build": "node ./scripts/build.js"
+ },
"devDependencies": {
"webpack": "^4.35.2",
"webpack-cli": "^3.3.5"
}
...
```
複製代碼
src/index.js
做爲主入口,以 build
爲打包後的目錄config/webpack.common.jsreact
output path字段這裏配置的絕對路徑webpack
const path = require('path');
module.exports = {
entry: "./src/index.js",
output: {
path: path.resolve(__dirname, "../build"),
filename: "bundle.js"
}
}
複製代碼
scripts/build.jsgit
const webpack = require('webpack');
const webpackConfig = require('../config/webpack.common.js');
webpack(webpackConfig, (err, stats) => {
if(err || stats.hasErrors()){
console.log("編譯失敗");
}
});
複製代碼
webpack node接口文檔: www.webpackjs.com/api/node/github
src/index.jsweb
console.log('hello')
複製代碼
yarn build
命令,生成打包目錄運行生成的 `bundle.js`
複製代碼
yarn add webpack-dev-server webpack-merge -D
複製代碼
config/webpack.common.jsjson
const path = require('path');
function webpackCommonConfigCreator(options){
/**
* options:
* mode // 開發模式
*/
return {
mode: options.mode,
entry: "./src/index.js",
output: {
filename: "bundle.js",
path: path.resolve(__dirname, "../build"),
}
}
}
module.exports = webpackCommonConfigCreator;
複製代碼
config/webpack.prod.jsapi
const webpackConfigCreator = require('./webpack.common');
const merge = require('webpack-merge');
const config = {
}
const options = {
mode: "production"
}
module.exports = merge(webpackConfigCreator(options), config);
複製代碼
config/webpack.dev.js
const webpackConfigCreator = require('./webpack.common');
const merge = require('webpack-merge');
const config = {
}
const options = {
mode: "development"
}
module.exports = merge(webpackConfigCreator(options), config);
複製代碼
script/build.js
const webpack = require('webpack');
const webpackConfig = require('../config/webpack.prod.js');
webpack(webpackConfig, (err, stats) => {
if(err || stats.hasErrors()){
console.log("編譯失敗");
}
});
複製代碼
yarn build
打包,輸出正常
config/webpack.dev.js
這裏的contentBase
選項是server模式下的output,開啓server後,webpack會實時編譯代碼到內存
...
+ const path = require('path');
const config = {
+ devServer: {
+ contentBase: path.join(__dirname, "../dist")
+ }
}
...
複製代碼
scripts/start.js
const webpack = require('webpack');
const webpackDevServer = require('webpack-dev-server');
const webpackConfig = require('../config/webpack.dev.js');
const compiler = webpack(webpackConfig);
const options = Object.assign({}, webpackConfig.devServer, {
open: true
})
const server = new webpackDevServer(compiler, options);
server.listen(3000, '127.0.0.1', () => {
console.log('Starting server on http://localhost:8080');
})
複製代碼
yarn start
, 瀏覽器自動彈出窗口,訪問 localhost:3000/bundle.js
相關連接
源碼github倉庫: github.com/tanf1995/We…