easywebpack-react

React client render and server side render build solution for Webpack

Usage no npm install needed!

<script type="module">
  import easywebpackReact from 'https://cdn.skypack.dev/easywebpack-react';
</script>

README

easywebpack-react

NPM version build status Test coverage David deps Known Vulnerabilities npm download

React client render and server side render build solution for Webpack

Featues

  • ✔︎ React Client Render and Server Side Render Build Mode
  • ✔︎ React Single Appliaction and React Mutil Appliaction Build Mode
  • ✔︎ Hot Reload, Css Hot Reload, Code Splitting, High Speed, Cache Build, Thread Build
  • ✔︎ ES5/ES6/ES7, TypeScript, DLL, Css Module, Dynamic Import, AntD Dynamic Import
  • ✔︎ Powerful Tool Chain easywebpack-cli

Version

  • @easy-team/easywebpack-react ^4.x.x > Webpack 4.x.x + Babel 7
  • easywebpack-react ^4.x.x > Webpack 4.x.x + Babel 6
  • easywebpack-react ^3.x.x > Webpack 3.x.x + Babel 6

Documents

Install

$ npm i @easy-team/easywebpack-react --save-dev

QuickStart

  • Install Command Line
$ npm i @easy-team/easywebpack-cli -g 
  • Initalize Application
$ easy init
  • Running Application
$ npm start

Configuration

Write Webpack Config webpack.config.js

const easywebpack = require('@easy-team/easywebpack-react');
const webpack = easywebpack.webpack;
const merge = easywebpack.merge;
const webpackConfig = easywebpack.getWebpackConfig({
    env, // support dev, test, prod 
    target : 'web', // browser mode build
    entry:{
      app: 'src/index.js'
    },
    customize(webpackConfig) {
      // ... customize webpack config
      return webpackConfig;
    }
});

Webpack Build

easy build --webpack

OR

webpack --config webpack.config.js

Application Development & Building

const webpackConfig = require('./webpack.config.js');
const easywebpack = require('@easy-team/easywebpack-react');
const webpackTool = new WebpackTool();
// development mode
easywebpack.server(webpackConfig);
// build file to disk
easywebpack.build(webpackConfig);

Example

Questions & Suggestions

Please open an issue here.

License

MIT