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

  • 4.4.5
  • Source
  • npm
  • Socket score

Version published
Weekly downloads
80
increased by1.27%
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

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

Keywords

FAQs

Package last updated on 20 Nov 2019

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