New Case Study:See how Anthropic automated 95% of dependency reviews with Socket.Learn More
Socket
Sign inDemoInstall
Socket

easywebpack-react

Package Overview
Dependencies
Maintainers
1
Versions
52
Alerts
File Explorer

Advanced tools

Socket logo

Install Socket

Detect and block malicious and high-risk dependencies

Install

easywebpack-react

React client render and server side render build solution for Webpack

  • 5.0.2
  • latest
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
7
decreased by-86.54%
Maintainers
1
Weekly downloads
 
Created
Source

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

  • easywebpack-react ^5.0.0 > Webpack ^5.0.0 + Babel 7
  • @easy-team/easywebpack-react ^4.0.0 > Webpack ^4.0.0 + Babel 7
  • easywebpack-react ^4.0.0 > Webpack ^4.0.0 + Babel 6
  • easywebpack-react ^3.0.0 > Webpack ^3.0.0 + Babel 6

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

Documents

Install

$ npm i easywebpack-react --save-dev

QuickStart

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

Configuration

Write Webpack Config webpack.config.js

const easywebpack = require('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('easywebpack-react');
const webpackTool = new WebpackTool();
// development mode
easywebpack.server(webpackConfig);
// build file to disk
easywebpack.build(webpackConfig);


## Example

- [react-client-render-boilerplate](https://github.com/easy-team/easywebpack-cli-template/tree/master/boilerplate/react) React client render boilerplate.

- [egg-react-webpack-boilerplate](https://github.com/easy-team/egg-react-webpack-boilerplate) support client render and server render.

- [egg-react-typescript-boilerplate](https://github.com/easy-team/egg-react-typescript-boilerplate) Egg + TypeScript + React server render boilerplate.

- you can use [easywebpack-cli](https://github.com/easy-team/easywebpack-cli) create client render project or create server side render project for react.


## Questions & Suggestions

Please open an issue [here](https://github.com/easy-team/easywebpack-react).

## License

[MIT](LICENSE)

Keywords

FAQs

Package last updated on 01 Apr 2023

Did you know?

Socket

Socket for GitHub automatically highlights issues in each pull request and monitors the health of all your open source dependencies. Discover the contents of your packages and block harmful activity before you install or update your dependencies.

Install

Related posts

SocketSocket SOC 2 Logo

Product

  • Package Alerts
  • Integrations
  • Docs
  • Pricing
  • FAQ
  • Roadmap
  • Changelog

Packages

npm

Stay in touch

Get open source security insights delivered straight into your inbox.


  • Terms
  • Privacy
  • Security

Made with ⚡️ by Socket Inc