Webpack+Gulp+React+ES6开发

摘要:
前言webpack是模块加载器+打包工具的集成器。因此,使用webpack模块来加载和编译jsx和es6,并使用Gulp压缩来编译scs、img和spritter。1.在Gulp中安装webpack和相关插件npminstall--save devpath webpack ULp-webpackreac-domabel-loaderbabel-reset-es2015babel-preset-read插件以编译react、jsx、es6等。2配置预查看webpack教程webpack 1 webpack指南2 webpack+react以配置webpack。配置。js/*加载文件路径*/varpath=必需,webpack=必需,root_路径=路径.解析,src路径=路径。resolve,//条目根目录dist_path=路径。resolve;//退出根目录条目文件条目:{index:path.resolve,mobile:path.reResolve}退出文件输出:{path:dist_path,filename:'js/[name].js'}路径在退出文件的js下。

前言

webpack是模块加载器+打包工具的集大成者。开发React堪称利器,jsx语法、es6,混淆、模块加载都很智能且功能强大,但是对于css、图片的加载器还不是像grunt/gulp那么丰富易于修改编辑,功能上略微不是那么方便,例如css中的图片地址修改或是需要替换cdn路径,图片压缩在webpack下修改极为不方便。所以用webpack模块加载编译jsx、es6,用gulp压缩编译scss、img、spriter

Webpack+Gulp+React+ES6开发第1张

一、安装

在gulp中安装webpack及相关的插件

npm install --save-dev path webpack gulp-webpack react react-dom babel-loader babel-preset-es2015 babel-preset-react 

插件作用编译react、jsx、es6等等

二、配置

预先查看webpack教程

webpack教程一

webpack教程二

webpack+React配合开发

在根目录配置webpack.config.js

/*加载 文件路径*/
var path              = require('path'),
    webpack           = require('webpack'),
    root_path         = path.resolve(__dirname),
    src_path          = path.resolve(root_path, 'src___phone'),//入口根目录
    dist_path         = path.resolve(root_path, 'dist___phone');//出口根目录

入口文件

entry: {
    index: path.resolve(src_path, 'js/index.jsx'),
    mobile:path.resolve(src_path, 'js/mobile.js')
  }

出口文件

output: {
    path: dist_path,
    filename: 'js/[name].js'
  }

路径是在出口文件的js下。

开启错误提示

resolve不用再在加载器后面使用-loader

//enable dev source map
  devtool: 'eval-source-map',//开启错误定位
  resolve: {
      extensions: ['', '.js', '.jsx']
  }

.js、.jsx文件匹配配置

    loaders: [
      {
        test: /.js$/, //正则
        include: src_path,//路径
        loader: "babel",//加载器
        presets: ['es2015', 'react']//es6
      },{
        test: /.jsx?$/,
        include: src_path,
        loader: 'babel',
        query: {presets: ['es2015', 'react']}
      }
    ]
  }

plugins配置--抽取公共的js,此功能极其强大且智能

new webpack.optimize.CommonsChunkPlugin('common', 'js/common.js')

截图

Webpack+Gulp+React+ES6开发第2张

根目录加入.babelrc配置

{
  "presets": ["react", "es2015"]
}

和.eslintrc配置

{
  "parserOptions": {
    "ecmaVersion": 6,
    "ecmaFeatures": {
      "experimentalObjectRestSpread": true,
      "jsx": true
    },
    "sourceType": "module"
  },

  "env": {
    "browser": true,
    "es6": true,
    "node": true
  },

  "plugins": [
    "standard",
    "promise"
  ],

  "globals": {
    "document": true,
    "navigator": true,
    "window": true,
    "react": true
  },

  "parser": "babel-eslint",

  "rules": {
    "accessor-pairs": 2, 
    "arrow-parens": [2, "as-needed"],
    "arrow-spacing": [2, { "before": true, "after": true }], 
    "block-spacing": [2, "always"],
    "brace-style": [2, "1tbs", { "allowSingleLine": true }],
    "comma-dangle": [2, "never"],
    "comma-spacing": [2, { "before": false, "after": true }],
    "comma-style": [2, "last"],
    "constructor-super": 2,
    "curly": [2, "multi-line"],
    "dot-location": [2, "property"],
    "eol-last": 2,
    "eqeqeq": [2, "allow-null"],
    "generator-star-spacing": [2, { "before": true, "after": true }],
    "handle-callback-err": [2, "^(err|error)$" ],
    "indent": [2, "tab", { "SwitchCase": 1 }],
    "keyword-spacing": [2, {"before": true, "after": true, "overrides": {}}],
    "key-spacing": [2, { "beforeColon": false, "afterColon": true }],
    "new-cap": [2, { "newIsCap": true, "capIsNew": false }],
    "new-parens": 2,
    "no-array-constructor": 2,
    "no-caller": 2,
    "no-class-assign": 2,
    "no-cond-assign": 2,
    "no-const-assign": 2,
    "no-control-regex": 2,
    "no-debugger": 2,
    "no-delete-var": 2,
    "no-dupe-args": 2,
    "no-dupe-class-members": 2,
    "no-dupe-keys": 2,
    "no-duplicate-case": 2,
    "no-empty-character-class": 2,
    "no-eval": 2,
    "no-ex-assign": 2,
    "no-extend-native": 2,
    "no-extra-bind": 2,
    "no-extra-boolean-cast": 2,
    "no-extra-parens": [2, "functions"],
    "no-fallthrough": 2,
    "no-floating-decimal": 2,
    "no-func-assign": 2,
    "no-implied-eval": 2,
    "no-inner-declarations": [2, "functions"],
    "no-invalid-regexp": 2,
    "no-irregular-whitespace": 2,
    "no-iterator": 2,
    "no-label-var": 2,
    "no-labels": [2, {"allowLoop": false, "allowSwitch": false}],
    "no-lone-blocks": 2,
    "no-mixed-spaces-and-tabs": 2,
    "no-multi-spaces": 2,
    "no-multi-str": 2,
    "no-multiple-empty-lines": [2, { "max": 2 }],
    "no-native-reassign": 2,
    "no-negated-in-lhs": 2,
    "no-new": 2,
    "no-new-func": 2,
    "no-new-object": 2,
    "no-new-require": 2,
    "no-new-wrappers": 2,
    "no-obj-calls": 2,
    "no-octal": 2,
    "no-octal-escape": 2,
    "no-proto": 2,
    "no-redeclare": 2,
    "no-regex-spaces": 2,
    "no-return-assign": 2,
    "no-self-compare": 2,
    "no-sequences": 2,
    "no-shadow-restricted-names": 2,
    "no-spaced-func": 2,
    "no-sparse-arrays": 2,
    "no-this-before-super": 2,
    "no-throw-literal": 2,
    "no-trailing-spaces": 2,
    "no-undef": 2,
    "no-undef-init": 2,
    "no-unexpected-multiline": 2,
    "no-unneeded-ternary": [2, { "defaultAssignment": false }],
    "no-unreachable": 2,
    "no-unused-vars": [2, { "vars": "all", "args": "none" }],
    "no-useless-call": 2,
    "no-with": 2,
    "one-var": [2, { "initialized": "never" }],
    "operator-linebreak": [2, "after", { "overrides": { "?": "before", ":": "before" } }],
    "quotes": [2, "single", "avoid-escape"],
    "radix": 2,
    "semi": [2, "always"],
    "semi-spacing": [2, { "before": false, "after": true }],
    "space-before-blocks": [2, "always"],
    "space-before-function-paren": [2, "never"],
    "space-in-parens": [2, "never"],
    "space-infix-ops": 2,
    "space-unary-ops": [2, { "words": true, "nonwords": false }],
    "spaced-comment": [2, "always", { "markers": ["global", "globals", "eslint", "eslint-disable", "*package", "!", ","] }],
    "use-isnan": 2,
    "valid-typeof": 2,
    "wrap-iife": [2, "any"],
    "yoda": [2, "never"],

    "standard/object-curly-even-spacing": [2, "either"],
    "standard/array-bracket-even-spacing": [2, "either"],
    "standard/computed-property-even-spacing": [2, "even"]
  }
}

三、gulp配置

引入插件

Webpack+Gulp+React+ES6开发第3张

task webpack

Webpack+Gulp+React+ES6开发第4张

watch

Webpack+Gulp+React+ES6开发第5张

最后加入default即可。

在入口文件写react及es6测试

Webpack+Gulp+React+ES6开发第6张Webpack+Gulp+React+ES6开发第7张

四、运行

cmd中进入根目录运行 gulp

Webpack+Gulp+React+ES6开发第8张

页面效果如图

Webpack+Gulp+React+ES6开发第9张

修改index.js mobile.js,本地服务器实时刷新

Webpack+Gulp+React+ES6开发第10张

五、增强

Webpack+Gulp+React+ES6开发第11张Webpack+Gulp+React+ES6开发第12张

因为js开启了错误定位,所以文件非常大,发布上线后,需要去掉source-map,减小体积。引入了react后index有1.7M,在package.json中的"scripts"新增命令

"build": "webpack --progress --profile --colors --config webpack.production.config.js"

配置config webpack.production.config.js 将source-map去掉 发布时候运行

npm run build 

生成文件及出口设置可在配置文件中设置

Webpack+Gulp+React+ES6开发第13张

现在只有201k了,体积大大减小了,可以说是翻天覆地的变化

六、总结

用webpack模块加载js、提取公共的部分、用gulp压缩编译scss、图片、spriter等等。

webpack+gulp+react配置后,react、es6、jsx再也不担心低版本浏览器不支持了

免责声明:文章转载自《Webpack+Gulp+React+ES6开发》仅用于学习参考。如对内容有疑问,请及时联系本站处理。

上篇动手学深度学习14- pytorch Dropout 实现与原理Linux基础(08)信号通信机制下篇

宿迁高防,2C2G15M,22元/月;香港BGP,2C5G5M,25元/月 雨云优惠码:MjYwNzM=

相关文章

使用npx创建react+typescript项目

1. 创建ts项目 npx create-react-app xxx --template typescript 2. 配置prettier vscode 安装插件 右键选项 选择prettier 3. 配置环境变量 根目录下新建下图文件 生产环境文件:.env 测试环境文件:.env.development 注意:环境变量需要以REACT_APP_...

基于node的前端项目编译时(react vue 打包)内存溢出问题

前段时间公司有个基于 vue 的项目在运行 npm run build 的时候会报内存溢出,今天在某个技术流交群也有位小伙伴基于 angular 的项目也出现了这个问题,所以查了一些相关的资料总结了一下,下面会详细说明前端三大框架编译时遇到这个问题具体怎么解决。首先看我模拟出的报错内容 具体截图如下 里面有句关键的话, CALL_AND_RETRY_LA...

从零开始的野路子React/Node(7)将Swagger(OpenAPI)运用于后端API

之前公司做项目是用过swagger来配置python模型的API,感觉非常好用。swagger可以提供request, response甚至error的验证机制,十分便利。node当然也可以用啦。 我们需要使用的库主要是swagger-ui-express,它将提供swagger的相关功能以及一个UI,方便查看和调试。 1、初始设定 老规矩,我们还是通过e...

webpack4与babel配合使es6代码可运行于低版本浏览器

使用es6+新语法编写代码,可是不能运行于低版本浏览器,需要将语法转换成es5的。那就借助babel7转换,再加上webpack打包,实现代码的转换。 转换包括两部分:语法和API let、const这些是新语法。 new promise()等这些是新API。 简单代码 类库 utils.js const name = 'weiqinl' let y...

使用create-react-app构建的项目(并引入react-app-polyfill做IE兼容)在开发环境下的IE浏览器中报错的解决方案

个人所负责的一个项目,需要兼容IE11,所以已经按照react-app-polyfill官方指定的方案进行兼容配置即在项目src/index.js中: //The first lines in src/index.js import 'react-app-polyfill/ie11'; import 'react-app-polyfill/stable';...

记一次真实的webpack优化经历

前言 公司目前现有的一款产品是使用vue v2.0框架实现的,配套的打包工具为webpack v3.0。整个项目大概有80多个vue文件,也算不上什么大型项目。 只不过每次头疼的就是打包所耗费的时间平均在一分钟左右,而且打包后有几个文件显示为【big】,也就是文件体积过大。 最近就想着捣鼓一下,看能不能在此前的基础上做一些优化,顺带记录下来分享给大家。...