webpack-base-config

0.2.9 • Public • Published

webpack-base-config

the webpack base config of react develop environment
使用webpack、webpack-dev-server快速搭建react开发环境

中文文档

Install

npm install webpack-base-config --save-dev

Usage

in root directory of your project create new js file(e.g: server.js) and write following code:

const { webpackConfig, webpackDevServer } = require('webpack-base-config');
 
webpackDevServer(webpackConfig(Options));

In order to ensure the Babel compilation, you need to create .babelrc file in your root directory

{
  "presets": ["es2015", "stage-0", "react"],
  "plugins": ["transform-runtime"],
}
 

Options

the options is a object, and the value like this:

const Options = {
  entry: './src/index.js',  // your project entry file
  htmlTemplate: './src/index_template.html', // your html template file
};

so, use node server.js to start the local server in localhost: 3000

Demo

see the usage demo

Package Sidebar

Install

npm i webpack-base-config

Weekly Downloads

2

Version

0.2.9

License

ISC

Last publish

Collaborators

  • allenzeng