• Vue(四)--webpack


    一、webpack简介

    At its core, webpack is a static module bundler for modern JavaScript applications.

    从本质上来讲,webpack是一个现代的JavaScript应用的静态模块打包工具。

    image

    二、webpack安装

    安装webpack首先需要安装Node.js,Node.js自带了软件包管理工具npm

    1)查看node版本

    image

    2)全局安装webpack

    先指定版本号3.6.0,因为vue cli2依赖该版本

    npm install webpack@3.6.0 -g

    3)局部安装

    --save-dev是开发时依赖,项目打包后不需要继续使用的

    cd 对应目录
    npm install webpack@3.6.0 --save-dev

    4)为什么全局安装后,还需要局部安装呢?

    • 在终端直接执行webpack命令,使用的全局安装的webpack
    • 当在package.json中定义了scripts时,其中包含了webpack命令,那么使用的是局部webpack

    5)查看webpack版本

    webpack –version

    三、webpack起步

    1)创建相关文件及文件夹

    image

    2)使用webpack工具,对多个js文件进行打包

    image

    3)index.html中引入

    bundle.js文件,是webpack处理了项目直接文件依赖后生成的一个js文件,我们只需要将这个js文件在index.html中引入即可

    image

    image

    四、webpack配置

    4.1、入口与出口

    如果每次使用webpack的命令都需要写上入口和出口作为参数,就非常麻烦,有没有一种方法可以将这两个参数写到配置中,在运行时,直接读取呢?当然可以,就是创建一个webpack.config.js文件

    const path = require('path')
    
    module.exports = {
      //入口: 可以是字符串/数组/对象
      entry: './src/main.js',
      output: {
        //出口:通常是一个对象
        path: path.resolve(__dirname, 'dist'), //绝对路径
        filename: 'bundle.js'
      },
    }

    4.2、局部安装webpack

    image

    4.3、package.json中定义启动

    1)生成package.json文件

    cd  对应目录
    npm init

    2)修改package.json

    package.json中的scripts的脚本在执行时,会按照一定的顺序寻找命令对应的位置。首先,会寻找本地的node_modules/.bin路径中对应的命令。如果没有找到,会去全局的环境变量中寻找

    image

    3)使用npm run build启动

    image

    五、webpack的loader

    5.1、什么是loader

    image

    5.2、css  loader

    image

    image

    image

    image

    5.3、less-loader

    image

    image

    5.4、图片文件处理

    image

    1)url-loader

    image

    2)file-loader

    image

    3)修改文件名称

    image

    5.5、ES6语法处理

    image

    六、webpack配置vue

    6.1、引入vue

    image

    6.2、打包错误解决

    image

    image

    在webpack.config.js中配置:

    image

    6.3、el和template区别

    image

    image

    6.4、Vue组件化开发引入

    image

    6.5、.vue文件封装处理

    image

    七、Plugin使用

    7.1、认识plugin

    image

    7.2、添加版权的Plugin

    image

    7.3、打包html的plugin

    image

    7.4、js压缩的Plugin

    image

    八、搭建本地服务器

    image

    九、配置文件分离

    1)安装相关插件

    npm install  webpack-merge --save-dev

    2)创建相关文件

    image

    base.config.js

    注意要修改打包的path,否者会打包到build目录下

    const path = require('path')
    const webpack = require('webpack')
    const HtmlWebpackPlugin = require('html-webpack-plugin')
    const UglifyjsWebpackPlugin = require('uglifyjs-webpack-plugin')
    
    module.exports = {
      entry: './src/main.js',
      output: {
        path: path.resolve(__dirname, '../dist'),
        filename: 'bundle.js',
        // publicPath: 'dist/'
      },
      module: {
        rules: [
          {
            test: /.css$/,
            // css-loader只负责将css文件进行加载
            // style-loader负责将样式添加到DOM中
            // 使用多个loader时, 是从右向左
            use: [ 'style-loader', 'css-loader' ]
          },
          {
            test: /.less$/,
            use: [{
              loader: "style-loader", // creates style nodes from JS strings
            }, {
              loader: "css-loader" // translates CSS into CommonJS
            }, {
              loader: "less-loader", // compiles Less to CSS
            }]
          },
          {
            test: /.(png|jpg|gif|jpeg)$/,
            use: [
              {
                loader: 'url-loader',
                options: {
                  // 当加载的图片, 小于limit时, 会将图片编译成base64字符串形式.
                  // 当加载的图片, 大于limit时, 需要使用file-loader模块进行加载.
                  limit: 13000,
                  name: 'img/[name].[hash:8].[ext]'
                },
              }
            ]
          },
          {
            test: /.js$/,
            exclude: /(node_modules|bower_components)/,
            use: {
              loader: 'babel-loader',
              options: {
                presets: ['es2015']
              }
            }
          },
          {
            test: /.vue$/,
            use: ['vue-loader']
          }
        ]
      },
      resolve: {
        extensions: ['.js', '.css', '.vue'],
        alias: {
          'vue$': 'vue/dist/vue.esm.js'
        }
      },
      plugins: [
        new webpack.BannerPlugin('最终版权归aaa所有'),
        new HtmlWebpackPlugin({
          template: 'index.html'
        })
      ]
    }
    
    
    View Code

    dev.config.js

    const webpackMerge = require('webpack-merge')
    const baseConfig = require('./base.config')
    
    module.exports = webpackMerge(baseConfig, {
      devServer: {
        contentBase: './dist',
        inline: true
      }
    })
    View Code

    prod.config.js

    const UglifyjsWebpackPlugin = require('uglifyjs-webpack-plugin')
    const webpackMerge = require('webpack-merge')
    const baseConfig = require('./base.config')
    
    module.exports = webpackMerge(baseConfig, {
      plugins: [
        new UglifyjsWebpackPlugin()
      ]
    })
    View Code
  • 相关阅读:
    VitrualBox无法创建64位虚拟机
    SharePoint2010安装全过程
    SharePoint 2010 集成Window Live 认证遇到的问题 part1
    sharepoint 2007 page
    解决sharepoint 2010浏览器在线浏览Word出错
    http://newoinc.wordpress.com/2010/07/09/webpartpropertypaneokcancelapplybuttonsdisplayissue/
    jquery ajax 实现从service读取数据,done
    刚好理解:TreeView设置checkbox事件__doPostBack()
    ASPAJAXExtSetup 安装说明(转)
    一个简单登陆框的变化+更新了如何连接sql数据库,获得数据集,比较两种方法(数据集和读数据)
  • 原文地址:https://www.cnblogs.com/hujinzhong/p/13612065.html
Copyright © 2020-2023  润新知