webpack4.0入门实践

npm init -y  创建package.json文件

npm install -D webpack webpack-cli

命令行打包 :

  node_modules/.bin/webpack  需要打包的文件地址 --output 目标文件地址

  eq:node_modules/.bin/webpack  index.js --output dist/bundle.js

文件配置:

    eq:一个手动创建的.js文件依赖jquery.js进行打包

        1.使用npm安装jquery依赖   2.在js导入jquery   import $ from 'juqery'

        3.创建webpack.config.js文件

                  const path = require("path");

                    module.exports = {

                          entry:   "./index.js" ,

                          output: {

                                filename: "bundle.js",

                                path: path.resolve(__dirname, "dist")

                          }

                        };

        

你可能感兴趣的:(webpack4.0入门实践)