美文网首页
webpack实用教程

webpack实用教程

作者: 前端的爬行之旅 | 来源:发表于2018-09-25 17:24 被阅读2次

    packjson.js

    终端输入$ npm init -y

    {
      "name": "2",
      "version": "1.0.0",
      "description": "",
      "main": "webpack.config.js",
      "scripts": {
        "test": "echo \"Error: no test specified\" && exit 1",
      },
      "keywords": [],
      "author": "",
      "license": "ISC",
      "devDependencies": {
        "webpack": "^3.5.5"
      }
    }
    

    project 开发的依赖

    1. 终端输入$ npm i -D webpack

      终端输入$ npm i -D webpack-cli

    2. 终端输入$ npm i -D webpack@3
      安装3.几版本的webpack

    (webpack只在开发阶段使用)
    添加配置

    "scripts": {
        "test": "echo \"Error: no test specified\" && exit 1",
        // 默认会运行webpack.config.js
        "dev": "webpack --config webpack.config.dev.js"
      },
    

    webpack.config.js

    webpack的配置文件

    
    const path = require('path');
    // module.exports是common.js&&node.js的模块化语法。
    // webpack是依赖于node.js来运行,所以用module.exports。
    module.exports = {
        // entry: 程序的入口
        entry: './src/app.js',
        // output: 打包之后输出的文件
        output: {
            // path接受绝对路径,引入node.js的path的模块
            path: path.resolve(__dirname, 'dist'),
            // 打包之后的入口文件。
            filename: 'apc.js'
        },
        // mode:development/production
        mode: 'development'
    };
    

    终端输入$ npm run dev
    webpack会依赖webpack.config.js的配置进行打包
    就会在dist文件夹中生成apc.js,引入index.js调用apc.js在浏览器中打开即可。

    src:放置项目源代码的文件夹

    app.js:入口文件(模块入口文件)
    index.html:用于加载app.js。

    • 安装index.html:
      终端输入$ npm i -D html-webpack-plugin
      package.json中会生成插件
    "devDependencies": {
        "html-webpack-plugin": "^2.30.1",
        "webpack": "^3.5.5"
      }
    

    在webpack.js中引入plugins即可

    const HtmlWebpackPlugin = require('html-webpack-plugin');
    const path = require('path');
    
    module.exports = {
        entry: './src/app.js',
        output: {
            path: path.resolve(__dirname, 'dist'),
            filename: 'apc.js'
        },
        plugins: [
            new HtmlWebpackPlugin({
                // 打包成功之后会生成的入口html,默认为index.html
                filename: 'aac.html',
                // 以'src/index.html'为模版,作为打包的入口文件
                template: 'src/index.html'
            })
        ]
    };
    

    loader

    loader是webpack用来处理模块的
    在一个模块被引入之前,会预先使用loader处理模块的内容

    相关文章

      网友评论

          本文标题:webpack实用教程

          本文链接:https://www.haomeiwen.com/subject/lzlloftx.html