cd webpack-test
cnpm init
cnpm install webpack --save-dev
dir
源文件目錄 mkdir src 靜態(tài)資源目錄 mkdir dist
腳本目錄 mkdir script 樣式目錄 mkdir style
cd dist mkdir js
cd .. cd src cd script echo ... > main.js main.js內(nèi)容如下: function helloWorld(){ }
echo ... > index.html 文件名:index.html 內(nèi)容如下: <!DOCTYPE html> <html> <head> <meta charset="utf-8"> <meta http-equiv="X-UA-Compatible" content="IE=edge"> <title></title> <link rel="stylesheet" href=""> </head> <body> <script src="bundle.js"></script> </body> </html>
echo ... > webpack.config.js webpack.config.js內(nèi)容如下: module.exports={ entry:'./src/script/main.js', output:{ path:'./dist/js', filename:'bundle.js' } }
cd dist/js dir
ren webpack.config.js webpack.dev.config.js dir
webpack
webpack --config webpack.dev.config.js
{ "name": "webpack-test", "version": "1.0.0", "description": "", "main": "index.js", "scripts": { "test": "echo \"Error: no test specified\" && exit 1", "webpack":"webpack --config webpack.config.js --progress --display-modules --colors --display-reason" }, "author": "", "license": "ISC", "devDependencies": { "webpack": "^2.2.1" } }
cnpm run webpack
創(chuàng)新互聯(lián)www.cdcxhl.cn,專業(yè)提供香港、美國云服務(wù)器,動(dòng)態(tài)BGP最優(yōu)骨干路由自動(dòng)選擇,持續(xù)穩(wěn)定高效的網(wǎng)絡(luò)助力業(yè)務(wù)部署。公司持有工信部辦法的idc、isp許可證, 機(jī)房獨(dú)有T級(jí)流量清洗系統(tǒng)配攻擊溯源,準(zhǔn)確進(jìn)行流量調(diào)度,確保服務(wù)器高可用性。佳節(jié)活動(dòng)現(xiàn)已開啟,新人活動(dòng)云服務(wù)器買多久送多久。
當(dāng)前題目:webpack打包初識(shí)-創(chuàng)新互聯(lián)
本文鏈接:http://chinadenli.net/article40/deeceo.html
成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供定制開發(fā)、微信公眾號(hào)、用戶體驗(yàn)、定制網(wǎng)站、品牌網(wǎng)站建設(shè)、網(wǎng)站制作
聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場,如需處理請聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)
猜你還喜歡下面的內(nèi)容