webpack

概述


webpack是一个打包工具
从指定的入口文件出发,找到所有引入的js及其他类型文件,转化打包为浏览器可以运行的文件

使用


安装

npm install webpack

使用

  • 命令行

      webpack {entry-file} {destination-file}
    
  • 配置文件

      module.exports = {
        entry: {entry-file},
        output: {
          path: {destination-path},
          filename: {destination-file}
        }
      }
    

参考


入门Webpack,看这篇就够了

你可能感兴趣的:(webpack)